forked from w33ble/template-node-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "template-node-cli",
"version": "1.0.1",
"description": "sao template for bare node cli modules",
"scripts": {
"lint": "eslint --",
"lint:fix": "eslint --fix --quiet --",
"precommit": "lint-staged",
"test": "ava",
"test:dev": "ava -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therealklanni/template-node-cli.git"
},
"keywords": [
"sao",
"sao template",
"template",
"commandline",
"cli"
],
"author": "Kevin Lanni (https://github.com/therealklanni)",
"license": "MIT",
"bugs": {
"url": "https://github.com/therealklanni/template-node-cli/issues"
},
"homepage": "https://github.com/therealklanni/template-node-cli",
"dependencies": {},
"devDependencies": {
"ava": "^0.19.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-prettier": "^2.1.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.2",
"prettier": "^1.3.1",
"sao": "^0.19.8"
},
"lint-staged": {
"**/*.js": [
"eslint --fix --quiet",
"git add"
]
}
}