forked from izaakschroeder/vinyl-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "vinyl-s3",
"version": "0.2.4",
"description": "Use S3 as a source or destination of vinyl files.",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"keywords": [ "s3", "vinyl", "gulp", "gulpfriendly" ],
"license": "CC0-1.0",
"homepage": "https://github.com/izaakschroeder/vinyl-s3",
"repository": {
"type": "git",
"url": "https://github.com/izaakschroeder/vinyl-s3.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": {
"aws-sdk": "^2.1.8",
"lodash": "^3.1.0",
"mime": "^1.3.4",
"vinyl": "^0.4.6",
"through2": "^1.1.1",
"through2-map": "^1.4.0",
"s3-glob": "^0.2.0",
"s3-streams": "^0.2.0",
"s3-url": "^0.2.2"
},
"devDependencies": {
"eslint": "^0.14.0",
"eslint-plugin-nodeca": "^1.0.3",
"mocha": "^2.1.0",
"istanbul": "^0.3.5",
"chai": "^1.10.0",
"chai-things": "^0.2.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0"
},
"engines": {
"node": "^0.8 || ^0.11 || ^0.12",
"iojs": "^1.0.0"
}
}