-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.36 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
50
51
{
"name": "event-loop-inspector",
"version": "1.2.2",
"description": "Dump event loop data.",
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"event-loop",
"event loop",
"libuv",
"inspector",
"nextTick",
"setImmediate",
"getActiveHandles",
"getActiveRequests",
"dump",
"monitoring",
"stats",
"loop"
],
"homepage": "https://github.com/keymetrics/event-loop-inspector",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha ./test/**/*.mocha.js",
"test-coverage": "nyc --reporter=html --reporter=text mocha ./test/**/*.mocha.js",
"test-thread": "node --experimental-worker node_modules/mocha/bin/_mocha ./test/**/*.mocha.js",
"test-coverage-thread": "nyc --reporter=html --reporter=text node --experimental-worker node_modules/mocha/bin/_mocha ./test/**/*.mocha.js",
"lint": "eslint ./test ./index.js"
},
"author": {
"name": "Vincent Vallet",
"email": "[email protected]",
"url": "https://github.com/wallet77"
},
"license": "MIT",
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"semver": "^5.5.1"
}
}