-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.02 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
{
"name": "day-off",
"version": "0.5.22",
"description": "node-js calendar",
"main": "src/main.js",
"scripts": {
"test": "xo && echo \"Initial status\"",
"start": "node src/main.js",
"format": "prettier --write './**/*.js'",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remunizz/day-off.git"
},
"keywords": [
"calendar",
"nodejs"
],
"author": "hi@renanmuniz.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/remunizz/day-off/issues"
},
"homepage": "https://github.com/remunizz/day-off#readme",
"dependencies": {
"chalk": "^2.2.0",
"optionextender": "1.0.4"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "1.7.4",
"xo": "^0.18.2"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"xo": {
"rules": {
"indent": 0,
"semi": 0
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}