-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 890 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
43
44
{
"name": "nails",
"version": "0.0.0",
"description": "Nails Framework",
"main": "bin/nails.js",
"bin": {
"nails": "nails.js"
},
"scripts": {
"start": "node ./bin/nails.js",
"dev": "better-npm-run dev"
},
"betterScripts": {
"dev": {
"command": "nodemon bin/nails.js",
"env": {
"NODE_ENV": "development"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarbull/nails.git"
},
"keywords": [
"node",
"nails"
],
"author": "Sirbu Nicolae-Cezar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sarbull/nails/issues"
},
"homepage": "https://github.com/sarbull/nails#readme",
"dependencies": {
"body-parser": "^1.16.1",
"express": "^4.14.1",
"lodash": "^4.17.4",
"mongoose": "^4.8.4"
},
"devDependencies": {
"better-npm-run": "0.0.14"
}
}