forked from appdevdesigns/appdev-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 770 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 770 Bytes
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
{
"name": "appdev",
"version": "0.1.0",
"description": "command line utilities for appDev projects",
"main": "lib/main.js",
"bin": {
"appdev": "bin/appDev.js",
"appdevDebug": "bin/appDevDebug.js"
},
"dependencies": {
"commander": "~2.0.0",
"colog": "~0.1.8",
"ejs": "~0.8.4",
"read": "~1.0.5",
"mysql": "~2.0.0-alpha9"
},
"devDependencies": {
"mocha": "~1.12.1",
"chai": "~1.7.2",
"jquery": "~1.8.3",
"sails": "0.9.7",
"grunt": "0.4.1",
"sails-disk": "~0.9.0",
"ejs": "0.8.4",
"optimist": "0.3.4",
"sails-mysql": "~0.9.5"
},
"scripts": {
"start": "node app.js",
"debug": "node --debug app.js",
"test": "make test"
},
"author": "Johnny Hausman",
"license": "GPLv3"
}