Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f1aaf866176e9ed6e1c93d09fc7debe2a1c4965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  "name": "bootstrap-icons",
  "version": "0.1.0",
  "description": "Official open source icon library for Bootstrap",
  "scripts": {
    "docs-serve": "hugo server --port 4000 --disableFastRender",
    "docs-build": "hugo --cleanDestinationDir",
    "icons-prep": "svgo --config=svgo.yml --input=icons/",
    "icons-zip": "cross-env-shell \"shx rm -rf bootstrap-icons-$npm_package_version && shx cp -r icons/ bootstrap-icons-$npm_package_version && zip -r9 bootstrap-icons-$npm_package_version.zip bootstrap-icons-$npm_package_version && shx rm -rf bootstrap-icons-$npm_package_version\"",
    "push-pages": "cd _site && git init && git remote add staging https://github.com/twbs/icons/ && git add . && git commit -m \"Publishing latest changes\" && git push staging master:gh-pages --force && git remote rm staging",
    "publish": "cross-env HUGO_ENV=production npm run docs-build && npm run push-pages"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/twbs/icons.git"
  },
  "keywords": [
    "bootstrap",
    "icons"
  ],
  "author": "mdo",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/twbs/icons/issues"
  },
  "homepage": "https://icons.getbootstrap.com/",
  "hugo-bin": {
    "buildTags": "extended"
  },
  "dependencies": {},
  "devDependencies": {
    "autoprefixer": "^9.6.1",
    "cross-env": "^5.2.0",
    "hugo-bin": "^0.44.3",
    "postcss-cli": "^6.1.3",
    "shx": "^0.3.2",
    "svgo": "^1.3.0"
  },
  "files": [
    "icons/*.svg"
  ]
}