-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.48 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
{
"name": "contentstream",
"version": "1.0.0",
"description": "Make a readable stream by input content, content could be `String`, `Buffer`, `Object`, `Number` and so on.",
"main": "index.js",
"scripts": {
"test": "mocha --check-leaks -R spec -t 1000 test/*.test.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --check-leaks -t 1000 test/*.test.js",
"test-travis": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks -t 1000 test/*.test.js",
"jshint": "jshint .",
"autod": "autod -w --prefix '~'",
"cnpm": "npm install --registry=https://registry.npmmirror.com",
"contributors": "contributors -f plain -o AUTHORS"
},
"dependencies": {
"readable-stream": "~1.0.33-1"
},
"devDependencies": {
"autod": "*",
"contributors": "*",
"istanbul": "*",
"jshint": "*",
"mocha": "*",
"readall": "~0.0.4",
"should": "~3.3.0"
},
"homepage": "https://github.com/stream-utils/contentstream",
"repository": {
"type": "git",
"url": "git://github.com/stream-utils/contentstream.git"
},
"bugs": {
"url": "https://github.com/stream-utils/contentstream/issues",
"email": "[email protected]"
},
"keywords": [
"contentstream", "readable", "readstream", "stream", "stream2", "stream3"
],
"engines": {
"node": ">= 0.8.0"
},
"author": "fengmk2 <[email protected]> (http://fengmk2.github.com)",
"license": "MIT"
}