-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
40 lines (40 loc) · 974 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
{
"name": "node-catapult",
"version": "1.0.0",
"description": "A rapid project starter for node and browserify.",
"main": "server/index.js",
"scripts": {
"start": "nodemon server/ --ignore client/",
"test": "./test/run.sh"
},
"author": "Gilbert <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.2.2",
"body-parser": "^1.14.1",
"browserify-middleware": "^7.0.0",
"express": "^4.12.4",
"mithril": "^0.2.0",
"supertest-as-promised": "^3.1.0"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3",
"nodemon": "^1.3.7",
"supertest": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mindeavor/node-catapult"
},
"keywords": [
"boilerplate",
"browserify",
"express",
"mithril"
],
"bugs": {
"url": "https://github.com/mindeavor/node-catapult/issues"
},
"homepage": "https://github.com/mindeavor/node-catapult"
}