-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.02 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.02 KB
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
{
"name": "mock-client",
"version": "0.2.4",
"description": "Collect status tasks and post to github status api",
"main": "mock-client.js",
"scripts": {
"test": "node_modules/.bin/mocha --timeout 15000",
"start": "DEBUG=mock-client:log,cluster:* node --max-old-space-size=48 mock-client.js >> `cat .env|grep LOGFILE|awk -F= {'print$2'}` 2>&1 &",
"stop": "cat `cat .env|grep PIDFILE|awk -F= {'print$2'}` |xargs kill -2 2>&1 &",
"jscs": "jscs --fix *.js includes/*.js",
"devel-start": "DEBUG=* node --max-old-space-size=48 mock-client.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedberry/mock-client.git"
},
"author": "Gormartsen",
"license": "SEE LICENSE IN <LICENSE.txt>",
"bugs": {
"url": "https://github.com/fedberry/mock-client/issues"
},
"homepage": "https://github.com/fedberry/mock-client#readme",
"dependencies": {
"dotenv-save": "^1.2.0",
"request": "^2.25.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3"
}
}