-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "anyw",
"version": "0.0.1",
"description": "A tiny NodeJS file server.",
"main": "src/app.js",
"bin": {
"anyw": "bin/anyw"
},
"scripts": {
"precommit": "lint-staged",
"fixlint": "eslint --fix . && eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": ["eslint --fix .", "prettier --single-quote --write src/**/*.{js,json}", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/my-nodejs-practice/anyw.git"
},
"keywords": ["anyw", "anywhere"],
"author": "lizhigao <lizhigao1231@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/my-nodejs-practice/anyw/issues"
},
"homepage": "https://github.com/my-nodejs-practice/anyw#readme",
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"prettier": "1.12.1"
},
"dependencies": {
"chalk": "^2.4.1",
"etag": "^1.8.1",
"handlebars": "^4.1.2",
"yargs": "^13.2.4"
}
}