-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.07 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.07 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "karma-css",
"version": "2.0.1",
"description": "The Official Sass Version of Karma-CSS: A Simple, Responsive Boilerplate for Mobile-Friendly Development.",
"repository": {
"type": "git",
"url": "https://github.com/accentdesign/karma-css"
},
"bugs": {
"url": "https://github.com/accentdesign/karma-css/issues"
},
"homepage": "http://karmacss.com",
"author": "Accent Design <npm@accentdesign.co.uk>",
"keywords": [
"karma",
"css",
"sass",
"scss",
"responsive",
"boilerplate"
],
"license": "MIT",
"scripts": {
"css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true scss/karma.scss dist/karma.css && node-sass --output-style expanded --source-map true --source-map-contents true scss/karma-components.scss dist/karma-components.css",
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/*.css\" \"!dist/*.min.css\"",
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/karma.min.css dist/karma.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/karma-components.min.css dist/karma-components.css",
"watch-css": "nodemon --ignore dist/ -e scss -x \"npm run css\""
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.7.5",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"stylelint": "^13.3.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.0"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}