forked from keithwhor/nodal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.16 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
53
54
55
{
"name": "nodal",
"version": "0.14.0-rc6",
"description": "An API Server and Framework for node.js",
"keywords": [
"framework",
"api",
"application",
"branding",
"server",
"modular",
"nodal"
],
"author": [
"Keith Horwood",
"Maxim Ulyanov"
],
"main": "core/module.js",
"dependencies": {
"api-res": "~0.0.4",
"async": "^2.6.0",
"cmnd": "^0.2.1",
"colors": "~1.1.0",
"cross-spawn-async": "~2.2.5",
"deep-equal": "~1.0.1",
"dot": "^1.1.2",
"dotenv": "^4.0.0",
"fs-extra": "^5.0.0",
"fxn": "git+https://github.com/maxism/fxn.git",
"i": "~0.3.4",
"inquirer": "^5.0.0",
"mime-types": "~2.1.9",
"pg": "^7.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0"
},
"scripts": {
"test": "mocha ./test/runner.js",
"docs": "documentation build core/module.js -o docs -f html"
},
"repository": {
"type": "git",
"url": "https://github.com/maxism/nodal.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maxism/nodal/issues"
},
"homepage": "https://github.com/maxism/nodal",
"bin": {
"nodal": "cli/bin.js"
}
}