-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 904 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
{
"name": "krojs",
"version": "0.0.1",
"description": "A backend framework for APIs in nodejs",
"main": "server.js",
"bin": {
"krojs": "./bin/krojs.js"
},
"engines": {
"node": ">=6.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vroudge/krojs.git"
},
"keywords": [
"framework",
"back-end",
"node",
"router"
],
"author": "vroudge",
"license": "ISC",
"bugs": {
"url": "https://github.com/vroudge/krojs/issues"
},
"homepage": "https://github.com/vroudge/krojs#readme",
"dependencies": {
"colors": "~1.1.2",
"commander": "~2.9.0",
"ncp": "~2.0.0",
"nodegit": "~0.18.3",
"prompt": "~1.0.0",
"stream-replace": "~1.0.0"
},
"devDependencies": {
"babel-cli": "~6.24.1",
"babel-preset-env": "~1.4.0"
}
}