forked from milligram/milligram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "milligram",
"version": "1.4.1",
"description": "A minimalist CSS framework.",
"homepage": "https://milligram.io",
"repository": "milligram/milligram",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"main": "dist/milligram.css",
"keywords": [
"bootstrap",
"css",
"css3",
"flexbox",
"front-end",
"framework",
"html",
"html5",
"kickstarter",
"less",
"responsive",
"mobile",
"mobile-first",
"postcss",
"responsive",
"sass",
"scss",
"stylus"
],
"dependencies": {
"normalize.css": "~8.0.1"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"ava": "^3.9.0",
"backstopjs": "3.8.8",
"banner-cli": "^0.14.3",
"browser-sync": "^2.18.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"onchange": "^7.0.2",
"postcss-cli": "^7.1.1",
"prettier-standard": "^16.3.0",
"rimraf": "^3.0.2",
"sass-lint": "^1.12.1"
},
"scripts": {
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
"banner": "banner-cli dist/*.css",
"build": "rimraf dist && run-s sass autoprefixer banner",
"lint": "prettier-standard --check && sass-lint --verbose --no-exit",
"prepublishOnly": "npm run build",
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"start": "run-p build watch serve",
"test": "npm run build && nyc ava",
"visual-regression": "run-p serve visual-regression:compare",
"visual-regression:compare": "run-s build && backstop test --config backstop.config.js",
"visual-regression:reference": "run-s build && backstop reference --config backstop.config.js",
"watch": "onchange src -- run-p build"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
}
}