-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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": "tap-closer",
"version": "1.0.0",
"description": "Simple JS \"transform\" tool that will call window.close or process.exit when TAP output is complete",
"main": "index.js",
"license": "MIT",
"bin": {
"tap-closer": "./bin.js",
"tapcloser": "./bin.js"
},
"scripts": {
"prepublish": "browserify instrument.js | derequire | uglifyjs -cm > bundle.js",
"test": "npm run prepublish && browserify test/*.js | node bin.js | smokestack | tap-spec"
},
"author": {
"name": "Hugh Kennedy",
"email": "[email protected]",
"url": "http://hughsk.io/"
},
"dependencies": {},
"devDependencies": {
"browserify": "^8.0.2",
"derequire": "^1.2.0",
"global": "^4.3.0",
"smokestack": "^3.0.0",
"tap-finished": "0.0.1",
"tap-spec": "^2.1.2",
"tape": "^3.0.3",
"uglify-js": "^2.4.16"
},
"repository": {
"type": "git",
"url": "git://github.com/hughsk/tap-closer.git"
},
"keywords": [
"tap",
"tape",
"close",
"transform",
"prepend",
"instrument",
"end",
"exit"
],
"homepage": "https://github.com/hughsk/tap-closer",
"bugs": {
"url": "https://github.com/hughsk/tap-closer/issues"
}
}