-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
52 lines (52 loc) · 1.1 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
47
48
49
50
51
52
{
"name": "nodal",
"version": "0.16.1",
"description": "An API Server and Framework for node.js",
"keywords": [
"framework",
"api",
"application",
"branding",
"server",
"modular",
"nodal"
],
"author": "Keith Horwood",
"main": "core/module.js",
"dependencies": {
"api-res": "~0.0.4",
"async": "~1.5.2",
"cmnd": "~0.1.0",
"colors": "~1.1.0",
"cross-spawn-async": "~2.1.6",
"deep-equal": "~1.0.1",
"dot": "~1.0.3",
"dotenv": "^2.0.0",
"fs-extra": "~0.26.4",
"fxn": "~0.0.9",
"i": "~0.3.4",
"inquirer": "~0.11.3",
"mime-types": "~2.1.9",
"pg": "~4.5.5"
},
"devDependencies": {
"chai": "~3.5.0",
"mocha": "~2.4.5"
},
"scripts": {
"test": "mocha ./test/runner.js",
"docs": "documentation build core/module.js -o docs -f html"
},
"repository": {
"type": "git",
"url": "https://github.com/keithwhor/nodal.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keithwhor/nodal/issues"
},
"homepage": "https://github.com/keithwhor/nodal",
"bin": {
"nodal": "cli/bin.js"
}
}