-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@milo-css/grid",
"version": "1.0.3",
"description": "The grid module for Milo CSS.",
"keywords": [
"css",
"grid",
"system",
"responsive",
"framework"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"src-build": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
"css-lint": "stylelint --syntax scss \"src/**/*.scss\"",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/_grid.scss dist/grid.css",
"css-prefix": "postcss --config postcss.config.js --replace \"dist/*.css\" \"!dist/*.min.css\"",
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/grid.min.css dist/grid.css",
"watch-css": "nodemon --ignore dist/ -e scss -x \"npm run src-build\""
},
"author": "ninety-six <benhall.ninetysix@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ninety-six/milo-css-grid.git"
},
"bugs": {
"url": "https://github.com/ninety-six/milo-css-grid/issues"
},
"homepage": "https://github.com/ninety-six/milo-css-grid#readme",
"devDependencies": {
"autoprefixer": "^10.0.1",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.0.0",
"postcss-discard-comments": "^4.0.2",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}