forked from rockets/rockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 947 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
{
"name": "Rockets",
"private": true,
"version": "1.0.0",
"description": "",
"license": "MIT",
"author": {
"name": "Rudi Theunissen",
"email": "[email protected]",
"url": "https://github.com/rtheunissen"
},
"repository": {
"type": "git",
"url": "git://github.com/rtheunissen/rockets.git"
},
"dependencies": {
"async": "~1.2.1",
"bunyan": "^1.4.0",
"coffee-script": "^1.9.3",
"dotenv": "^1.2.0",
"request": "~2.58.0",
"uuid": "^2.0.1",
"ws": "^0.7.2"
},
"devDependencies": {
"chai": "^3.0.0",
"mocha": "^2.2.5",
"coffeelint": "^1.10.1"
},
"scripts": {
"test": "mocha --require ./test --compilers coffee:coffee-script/register --recursive",
"posttest": "find ./src -name *.coffee | xargs ./node_modules/.bin/coffeelint",
"start": "pm2 start server.js --name rockets --node-args=\"--stack-size=8192\"",
"stop": "pm2 stop rockets"
}
}