-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.75 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
{
"name": "@robb_j/r0b-design",
"version": "0.2.7",
"description": "",
"repository": "robb-j/r0b-design",
"author": "Rob Anderson (https://r0b.io)",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint src",
"preversion": "node cli/index.js build",
"prettier": "prettier --write '**/*.{js,json,css,md}'",
"test": "jest",
"dev": "node cli/index.js watch",
"build": "node cli/index.js build"
},
"keywords": [],
"engines": {
"node": ">=8"
},
"dependencies": {},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/glob": "^7.1.1",
"@types/node": "^11.13.8",
"@types/rimraf": "^2.0.2",
"@types/sass": "^1.16.0",
"@types/yargs": "^13.0.0",
"bulma": "^0.7.5",
"chokidar": "^3.0.0",
"dotenv": "^8.0.0",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fibers": "^4.0.1",
"glob": "^7.1.3",
"handlebars": "^4.7.6",
"http-server": "^0.12.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"lodash.debounce": "^4.0.8",
"lodash.set": "^4.3.2",
"ms": "^2.1.1",
"ora": "^3.4.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"sass": "^1.27.0",
"yargs": "^13.2.4"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,less,md}": [
"prettier --write",
"git add"
],
"*.{js}": [
"eslint",
"git add"
]
}
}