forked from thlorenz/dev-null
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 984 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 984 Bytes
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
{
"name": "dev-null",
"version": "0.1.1",
"description": "/dev/null for node streams",
"main": "index.js",
"scripts": {
"test-main": "tap test/*.js",
"test-0.10": "nave use 0.10 npm run test-main",
"test-all": "npm run test-main && npm run test-0.10",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/dev-null.git"
},
"homepage": "https://github.com/thlorenz/dev-null",
"dependencies": {},
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.3",
"tap-stream": "~0.2.0"
},
"keywords": [
"streams",
"test",
"debug",
"ignore",
"silence"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/dev-null/blob/master/LICENSE"
},
"engine": {
"node": ">=0.10"
}
}