-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "tape-promise",
"version": "4.0.0",
"description": "Promise/async support for tape.",
"main": "index.compiled.js",
"scripts": {
"build": "babel index.babel.js -o index.compiled.js",
"lint": "standard",
"test": "npm run lint && npm run build && npm run unit",
"unit": "find ./tests -name *.test.js -exec node -r babel-register {} \\; | tap-spec"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/jprichardson/tape-promise.git"
},
"keywords": [
"tape",
"promise",
"async",
"test",
"testing",
"tdd",
"unit"
],
"author": "JP Richardson",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/jprichardson/tape-promise/issues"
},
"homepage": "/~https://github.com/jprichardson/tape-promise#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.18.0",
"standard": "*",
"tap-spec": "^4.1.0",
"tape": "^4.2.2"
},
"dependencies": {
"is-promise": "^2.1.0",
"onetime": "^2.0.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"index.compiled.js"
]
}
}