-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 967 Bytes
/
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
{
"name": "co-multipart",
"description": "Download multipart files with open file descriptor limits and file disposal",
"version": "2.0.0",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cojs/multipart.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/cojs/multipart/issues"
},
"dependencies": {
"co-busboy": "1",
"fs-cp": "1",
"mz": "2",
"rimraf": "2"
},
"devDependencies": {
"co": "*",
"istanbul": "0",
"mocha": "*",
"should": "*"
},
"scripts": {
"test": "mocha --harmony -R spec -r should test/*.test.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -r should test/*.test.js"
},
"files": [
"index.js"
]
}