-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.78 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
{
"name": "milligram-less",
"version": "1.4.1",
"description": "A minimalist CSS framework on Less version.",
"homepage": "https://milligram.io",
"repository": "milligram/milligram-less",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"main": "dist/milligram.less",
"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.8.0",
"banner-cli": "^0.14.1",
"copycopy": "0.0.2",
"husky": "^4.2.5",
"less": "^3.11.2",
"lint-staged": "^10.2.7",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"postcss-cli": "^7.1.1",
"prettier-standard": "^16.3.0",
"rimraf": "^3.0.2"
},
"scripts": {
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r test/*.css",
"banner": "banner-cli dist/milligram.less",
"build": "rimraf dist && run-s copy banner less autoprefixer",
"copy": "copycopy src/**/* dist",
"less": "lessc src/milligram.less test/milligram.css && lessc --compress src/milligram.less test/milligram.min.css",
"lint": "prettier-standard --check",
"prepublishOnly": "npm run build",
"start": "run-p build watch",
"test": "run-s build",
"watch": "onchange src -- run-p build"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
}
}