-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 973 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
33
34
35
36
{
"name": "browser-tap",
"version": "0.0.0",
"description": "TAP reporter as a browser devtool extension",
"main": "browser-tap.js",
"dependencies": {
"tape": "^4.5.1"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-plugin-discard-module-references": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0"
},
"scripts": {
"compile": "browserify src/index.js --standalone browser-tap -t babelify > browser-tap.js",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnaudrinquin/browser-tap.git"
},
"keywords": [
"tap",
"browser",
"reporter"
],
"author": "Arnaud Rinquin",
"license": "MIT",
"bugs": {
"url": "https://github.com/arnaudrinquin/browser-tap/issues"
},
"homepage": "https://github.com/arnaudrinquin/browser-tap#readme"
}