-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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": "stream-chunk-promise",
"description": "Get a promise that resolves when we can read(size) next chunk of stream.",
"version": "1.0.2",
"author": "Tim Allen <tim@noblesamurai.com>",
"license": "BSD",
"main": "src/index.js",
"scripts": {
"coverage": "nyc -a -c -r html -r text -r lcov npm test",
"pretest": "semistandard --env mocha",
"test": "mocha --recursive test",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md src/index.js"
},
"homepage": "https://github.com/noblesamurai/stream-chunk-promise",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/stream-chunk-promise.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/stream-chunk-promise/issues"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"jsdoc-to-markdown": "~3.0.0",
"mocha": "~3.3.0",
"nyc": "^10.1.2",
"semistandard": "*",
"stream-generator": "^0.1.13",
"streamtest": "^1.2.3"
},
"keywords": [],
"nyc": {
"exclude": [
"coverage",
"test"
]
},
"semistandard": {
"env": [
"mocha"
]
}
}