forked from AccentDesign/snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.68 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
39
40
41
42
{
"name": "django_boilerplate",
"version": "0.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"scripts": {
"css": "npm-run-all css-compile* --sequential css-prefix* css-minify* fontello-dist*",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 static/scss/karma.scss static/dist/css/karma.css",
"css-prefix": "postcss --config postcss.config.js --replace \"static/dist/css/*.css\" \"!static/dist/css/*.min.css\"",
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output static/dist/css/karma.min.css static/dist/css/karma.css",
"fontello-dist": "cpy 'static/scss/fontello/font/*' static/dist/font",
"fontello-install": "fontello-cli install --config static/scss/fontello/config.json --css static/scss/fontello/css --font static/scss/fontello/font",
"fontello-web": "fontello-cli open --config static/scss/fontello/config.json",
"watch-css": "nodemon --ignore static/dist/ -e scss -x \"npm run css\""
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^7.2.5",
"clean-css-cli": "^4.1.10",
"cpy-cli": "^1.0.1",
"fontello-cli": "^0.4.0",
"karma-css": "git+https://git@github.com/accentdesign/karma-css.git",
"karma-css-components": "git+https://git@github.com/accentdesign/karma-css-components.git",
"node-sass": "^4.7.2",
"nodemon": "^1.14.11",
"npm-run-all": "^4.1.2",
"postcss-cli": "^4.1.1"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}