forked from TooTallNate/s3fs
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "s3fs",
"version": "2.5.0",
"description": "Implementation of Node.JS FS interface using Amazon Simple Storage Service (S3).",
"keywords": [
"s3fs",
"amazon s3",
"aws s3",
"fs",
"file system",
"simple storage service",
"amazon"
],
"homepage": "http://github.com/RiptideElements/s3fs",
"repository": {
"type": "git",
"url": "git://github.com/RiptideElements/s3fs.git"
},
"bugs": {
"url": "http://github.com/RiptideElements/s3fs/issues"
},
"author": {
"name": "David Pate",
"email": "[email protected]",
"url": "https://github.com/DavidTPate"
},
"contributors": [
{
"name": "Jhorlin De Armas",
"email": "[email protected]",
"url": "https://github.com/Jhorlin"
}
],
"license": "MIT",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.477.0",
"bluebird": "^3.5.5",
"extend": "~3.x"
},
"devDependencies": {
"buddy.js": "~0.x",
"chai": "~3.x",
"chai-as-promised": "~6.0.0",
"dirty-chai": "~1.2.2",
"eslint": "~3.7.1",
"istanbul": "~0.4.5",
"jscs": "~3.0.7",
"jsinspect": "~0.x",
"mocha": "~3.1.2",
"nsp": "~2.6.2",
"through2": "~2.x"
},
"scripts": {
"lint": "eslint . && jscs . && jsinspect . && buddy --detect-objects index.js ./lib",
"security": "nsp check",
"cover": "istanbul cover _mocha -- --check-leaks --recursive --timeout=25000 test && istanbul check-coverage --statements 80.95 --branches 76.56 --functions 74.3 --lines 80.95",
"test": "mocha --check-leaks --recursive --timeout=25000 test",
"test-ci": "npm run lint && npm run security && npm run cover"
}
}