-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1 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": "sponge",
"version": "0.1.0",
"description": "Reimplementation of sponge from moreutils",
"author": "Eugene Sharygin <[email protected]>",
"license": "MIT",
"bin": {
"sponge": "cli.js"
},
"files": [
"cli.js",
"index.js"
],
"scripts": {
"test": "npm run apitest && npm run clitest",
"apitest": "tape test/api/*.js",
"clitest": "PATH=\"$PWD:$PATH\" urchin -f test/cli"
},
"homepage": "https://github.com/eush77/node-sponge",
"repository": {
"type": "git",
"url": "https://github.com/eush77/node-sponge"
},
"bugs": {
"url": "https://github.com/eush77/node-sponge/issues"
},
"keywords": [
"sponge",
"moreutils",
"node",
"stream",
"stdin",
"stdout",
"file",
"accumulate",
"read",
"write",
"buffer"
],
"dependencies": {
"concat-stream": "^1.4.7",
"duplexer2": "0.0.2",
"through2": "^0.6.3"
},
"devDependencies": {
"rewire": "^2.3.1",
"tape": "^3.5.0",
"urchin": "0.0.5"
}
}