-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.08 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
{
"name": "milligram-cli",
"version": "0.1.2",
"description": "A cli tool for getting started with Milligram.",
"homepage": "https://milligram.io",
"repository": "milligram/milligram-cli",
"license": "MIT",
"author": "CJ Patoilo <cjpatoilo@gmail.com>",
"bin": {
"milligram": "index.js"
},
"files": [
"index.js"
],
"keywords": [
"automation",
"boilerplate",
"cli",
"css",
"framework",
"milligram",
"npm",
"package",
"starter"
],
"dependencies": {
"rasper": "^0.2.10",
"shelljs": "^0.8.4"
},
"devDependencies": {
"ava": "^3.11.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier-standard": "^16.4.1"
},
"scripts": {
"lint": "prettier-standard --check",
"test": "ava"
},
"engines": {
"node": "^12.18.0",
"npm": "^6.14.5"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
}
}