-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "franz-cli",
"version": "0.0.0",
"description": "The command line interface for franz",
"main": "index.js",
"repository": "franzsh/franz-cli",
"author": "Bu Kinoshita <[email protected]>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"test": "xo --quiet"
},
"bin": {
"franz": "bin/franz.js"
},
"dependencies": {
"franz-init": "^0.0.2",
"franz-validate": "^0.0.1",
"meow": "^3.7.0",
"shout-error": "^0.0.2",
"shout-success": "^0.0.2",
"update-notifier": "^2.2.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"ansi-escapes": "^2.0.0",
"ava": "^0.19.1",
"chalk": "^1.1.3",
"eslint-config-prettier": "^2.1.1",
"husky": "^0.13.4",
"inquirer": "^3.1.0",
"lint-staged": "^3.6.0",
"nicht": "^0.0.1",
"ora": "^1.2.0",
"xo": "^0.18.2"
},
"xo": {
"extends": "prettier"
},
"lint-staged": {
"*.js": [
"npm test",
"prettier --semi false --single-quote --write",
"git add"
]
}
}