-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
61 lines (61 loc) · 1.45 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.0.1",
"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/RiptideCloud/s3fs",
"repository": {
"type": "git",
"url": "git://github.com/RiptideCloud/s3fs.git"
},
"bugs": {
"url": "http://github.com/RiptideCloud/s3fs/issues"
},
"author": {
"name": "Jhorlin De Armas",
"email": "[email protected]",
"url": "https://github.com/Jhorlin"
},
"contributors": [
{
"name": "David Pate",
"email": "[email protected]",
"url": "https://github.com/DavidTPate"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.x",
"bluebird": "^2.x",
"extend": "^2.x"
},
"devDependencies": {
"buddy.js": "^0.x",
"chai": "^2.x",
"chai-as-promised": "^4.x",
"dirty-chai": "^1.x",
"nsp": "^1.x",
"mocha": "^2.x",
"istanbul": "^0.x",
"jscs": "^1.x",
"jshint": "^2.x",
"jsinspect": "^0.x"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --timeout 60000 --reporter spec test/ && jshint --show-non-errors . && jscs . && buddy index.js lib test && nsp audit-package"
}
}