-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
49 lines (49 loc) · 1.24 KB
/
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
42
43
44
45
46
47
48
49
{
"name": "stoppable",
"version": "1.1.0",
"engines": {
"node": ">=4",
"npm": ">=6"
},
"keywords": [
"server",
"net",
"connect",
"socket",
"connection",
"stop",
"close",
"disconnect",
"disconnection",
"http",
"https",
"tcp"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hunterloftis/stoppable.git"
},
"homepage": "https://github.com/hunterloftis/stoppable",
"scripts": {
"lint": "standard --fix \"lib/**/*.js\" \"test/**/*.js\"",
"spec": "nyc --check-coverage mocha --bail \"test/*.test.js\"",
"test": "npm run lint && npm audit && npm run spec",
"coverage": "nyc mocha --bail \"test/*.test.js\"",
"perf:baseline": "node test/performance.js & sleep 2 && artillery quick -d 10 -r 1000 -o /dev/null -k http://localhost:8000",
"perf:stoppable": "node test/performance.js 1 & sleep 2 && artillery quick -d 10 -r 1000 -o /dev/null -k http://localhost:8000"
},
"main": "lib/stoppable.js",
"license": "MIT",
"devDependencies": {
"artillery": "^1.6.0-29",
"awaiting": "^3.0.0",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nyc": "^14.1.1",
"requisition": "^1.7.0",
"standard": "^11.0.1"
}
}