This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
forked from twbs/bootstrap-sass
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.5 KB
/
package.json
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
{
"name": "@neos21/bootstrap3-glyphicons",
"version": "1.0.7",
"description": "Bootstrap3 Glyphicons",
"main": "assets/stylesheets/_bootstrap3-glyphicons.scss",
"sass": "assets/stylesheets/_bootstrap3-glyphicons.scss",
"style": "dist/css/bootstrap3-glyphicons.min.css",
"scripts": {
"build": "npm run build:clean && npm run build:fonts && npm run build:css",
"build:clean": "npm run build:clean:rm && npm run build:clean:mkdir",
"build:clean:rm": "rimraf ./dist/",
"build:clean:mkdir": "mkdirp ./dist/css/",
"build:fonts": "cpx \"./assets/fonts/*\" ./dist/fonts/",
"build:css": "npm run build:css:normal && npm run build:css:min",
"build:css:normal": "node-sass ./assets/stylesheets/_bootstrap3-glyphicons.scss -r --output-style expanded > ./dist/css/bootstrap3-glyphicons.css",
"build:css:min": "node-sass ./assets/stylesheets/_bootstrap3-glyphicons.scss -r --output-style compressed > ./dist/css/bootstrap3-glyphicons.min.css"
},
"author": "Neo <[email protected]> (https://neos21.net/)",
"license": "MIT",
"homepage": "https://github.com/Neos21/bootstrap3-glyphicons#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Neos21/bootstrap3-glyphicons.git"
},
"bugs": {
"url": "https://github.com/Neos21/bootstrap3-glyphicons/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Neos21"
},
"devDependencies": {
"cpx": "1.5.0",
"mkdirp": "0.5.1",
"node-sass": "4.7.2",
"rimraf": "2.6.2"
}
}