-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 982 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
{
"name": "nodebox-framework",
"version": "1.2.1",
"description": "node/express framework based on Coldbox",
"main": "index.js",
"scripts": {
"dev": "npm link nodebox-framework; cd testsite && nodemon --watch . --watch ../src",
"test": "echo \"Error: no test specified\" && exit 0"
},
"bin": {
"nodebox": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnbarlow/nodebox.git"
},
"keywords": [
"node",
"express",
"framework",
"html"
],
"author": "John Barlow",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnbarlow/nodebox/issues"
},
"homepage": "https://github.com/jnbarlow/nodebox#readme",
"dependencies": {
"colors": "^1.3.3",
"commander": "^12.1.0",
"lodash": "^4.17.15",
"loglevel": "^1.6.3",
"loglevel-colors": "^1.0.5",
"loglevel-plugin-prefix": "^0.8.4"
},
"devDependencies": {
"express": "^4.17.1",
"nodemon": "^3.1.7"
}
}