forked from sunluyong/anydoor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 968 Bytes
/
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
{
"name": "anydoor",
"version": "0.1.0",
"description": "tiny nodejs web server",
"main": "src/app.js",
"bin": {
"anydoor": "bin/anydoor"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix ."
},
"pre-commit": [
"fix",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Samaritan89/anydoor.git"
},
"keywords": [
"static",
"webserver"
],
"author": "Samaritan89",
"email": "sunluyong@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/Samaritan89/anydoor/issues"
},
"homepage": "https://github.com/Samaritan89/anydoor#readme",
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.5.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"chalk": "^2.1.0",
"handlebars": "^4.0.10",
"yargs": "^8.0.2"
}
}