-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
53
54
55
{
"name": "co-readable",
"version": "1.0.1",
"description": "Easy way to read stream data with co",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "npm run lint && mocha --check-leaks -R spec -t 5000 -r co-mocha test/*.test.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- --check-leaks -t 5000 -r co-mocha test/*.test.js",
"test-travis": "npm run lint && istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks -t 5000 -r co-mocha test/*.test.js",
"lint": "eslint index.js test",
"autod": "autod -w --prefix '~'",
"cnpm": "npm install --registry=https://registry.npm.taobao.org",
"contributors": "contributors -f plain -o AUTHORS"
},
"dependencies": {
"debug": "~2.6.9",
"destroy": "~1.0.3"
},
"devDependencies": {
"autod": "*",
"co": "4",
"co-mocha": "1",
"co-sleep": "0.0.1",
"contributors": "*",
"eslint": "1",
"istanbul-harmony": "0",
"mocha": "2"
},
"homepage": "https://github.com/cojs/co-readable",
"repository": {
"type": "git",
"url": "git://github.com/cojs/co-readable.git",
"web": "https://github.com/cojs/co-readable"
},
"bugs": {
"url": "https://github.com/cojs/co-readable/issues",
"email": "m@fengmk2.com"
},
"keywords": [
"co-readable",
"co",
"readable",
"read",
"readstream",
"readall"
],
"engines": {
"node": ">=1.0.0"
},
"author": "fengmk2 <m@fengmk2.com> (http://fengmk2.com)",
"license": "MIT"
}