-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "active-handles",
"version": "1.1.0",
"description": "Prints out information about the process's active handles, including function source and location",
"main": "index.js",
"scripts": {
"test-main": "tape test/*.js",
"test-0.10": " (cd ./node_modules/function-origin && nave use 0.10 node-gyp rebuild) && nave use 0.10 npm run test-main",
"test-0.12": " (cd ./node_modules/function-origin && nave use 0.12 node-gyp rebuild) && nave use 0.12 npm run test-main",
"test-iojs": " (cd ./node_modules/function-origin && nave use latest node-gyp rebuild) && nave use latest npm run test-main",
"test-all": "npm run test-main && npm run test-0.10 && npm run test-0.12 && npm run test-iojs",
"test": "if [ -e $TRAVIS ]; then (cd ./node_modules/function-origin && node-gyp rebuild) && npm run test-all; else npm run test-main; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/active-handles.git"
},
"homepage": "https://github.com/thlorenz/active-handles",
"dependencies": {
"ansicolors": "~0.3.2",
"cardinal": "~0.5.0",
"function-origin": "~1.1.0",
"xtend": "~4.0.0"
},
"devDependencies": {
"nave": "~0.5.1",
"tape": "~4.0.0"
},
"keywords": [
"active",
"handles",
"debug",
"profile",
"leak"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/active-handles/blob/master/LICENSE"
},
"engine": {
"node": ">=0.10"
}
}