forked from sramam/s3-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "s3-streams",
"version": "0.4.0",
"description": "Use readable/writeable streams for manipulating S3 objects.",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"keywords": [
"s3",
"stream",
"upload",
"download"
],
"license": "CC0-1.0",
"homepage": "https://github.com/izaakschroeder/s3-streams",
"repository": {
"type": "git",
"url": "https://github.com/izaakschroeder/s3-streams.git"
},
"main": "lib/s3.js",
"scripts": {
"test": "npm run lint && npm run spec && npm run coverage",
"spec": "NODE_PATH=lib NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- -r test/helpers/chai -r test/helpers/sinon -R spec test/spec",
"lint": "eslint --ignore-path .gitignore .",
"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100"
},
"dependencies": {
"lodash": "^4.17.5",
"readable-stream": "^2.0.0",
"bluebird": "^2.9.27"
},
"peerDependencies": {
"aws-sdk": "^2.1.34"
},
"devDependencies": {
"eslint": "^0.22.1",
"mocha": "^2.2.5",
"istanbul": "^0.3.15",
"chai": "^2.3.0",
"chai-things": "^0.2.0",
"chai-as-promised": "^4.3.0",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": "^0.8 || ^0.10 || >= 0.12",
"iojs": ">= 1.2.0"
}
}