forked from izaakschroeder/s3-glob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "s3-glob",
"version": "0.2.0",
"author": "Izaak Schroeder <[email protected]>",
"description": "Retrieve object list entries in S3 using minimatch-style globbing.",
"keywords": [ "s3", "glob" ],
"license": "CC0-1.0",
"homepage": "https://github.com/izaakschroeder/s3-glob",
"repository": {
"type": "git",
"url": "https://github.com/lawnstarter/s3-glob.git"
},
"main": "lib/glob.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": "^3.1.0",
"aws-sdk": "^2.1.8",
"minimatch": "^1.0.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.10 || ^0.12 || ^4 || ^5 || ^6"
}
}