-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
32 lines (32 loc) · 1016 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
{
"name": "wtfnode",
"version": "0.10.0",
"description": "Utility to help find out why Node isn't exiting",
"repository": {
"type": "git",
"url": "git+https://github.com/myndzi/wtfnode.git"
},
"main": "index.js",
"files": [
"index.js",
"proxy.js",
"README.md"
],
"scripts": {
"test": "(cd tests && node test && node test-eval && node test-promise && node test-promisify && node test-logging && node test-once-flowing && node test-issue-37.js && node test-no-source-map-support && node test-broken-source-map-support && node test-http-client && node test-http-info)",
"test-sourcemaps": "(cd tests && coffee --map --compile test-sourcemaps.coffee && node test-sourcemaps.js || exit 0)",
"kitchensink": "(cd tests && node kitchensink)"
},
"author": "Kris Reeves",
"bin": {
"wtfnode": "proxy.js"
},
"license": "ISC",
"devDependencies": {
"coffeescript": "^2.5.1",
"source-map-support": "^0.5.19"
},
"engines": {
"node": ">=0.10.0"
}
}