-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
47 lines (47 loc) · 1.22 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 <[email protected]>",
"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.11",
"readable-stream": "^3.1.1",
"bluebird": "^3.5.3"
},
"peerDependencies": {
"aws-sdk": "^2.1.34"
},
"devDependencies": {
"eslint": "^5.11.1",
"mocha": "^5.2.0",
"istanbul": "^0.4.5",
"chai": "^4.2.0",
"chai-things": "^0.2.0",
"chai-as-promised": "^7.1.1",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0"
},
"engines": {
"node": "^0.8 || ^0.10 || ^0.12",
"iojs": "^1.2.0"
}
}