-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 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
50
51
52
{
"name": "bob-streams",
"version": "0.4.2",
"description": "A Node.js strategic initiative aiming to improve Node.js streaming data interfaces, both within Node.js core internally, and hopefully also as future public APIs.",
"scripts": {
"test-only": "tap tests/*.js -J",
"lint": "standard --verbose",
"test": "npm run -s lint && npm run -s test-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fishrock123/bob.git"
},
"keywords": [
"BOB",
"bob",
"streams",
"stream",
"pull",
"strategic",
"initiative"
],
"author": "Jeremiah Senkpiel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fishrock123/bob/issues"
},
"homepage": "https://github.com/Fishrock123/bob#readme",
"dependencies": {
"fs-sink": "0.1.3",
"fs-source": "0.0.3",
"readable-stream": "3.4.0",
"zlib-transform": "0.0.3"
},
"devDependencies": {
"standard": "^13.0.2",
"tap": "^14.7.1"
},
"files": [
"index.js",
"helpers/*",
"reference-*",
"tests/helpers/*",
"tests/fixtures/*",
"tests/test-*"
],
"standard": {
"ignore": [
"experiments/*"
]
}
}