-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 946 Bytes
/
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
{
"name": "random-access-s3",
"version": "0.0.2",
"description": "A read-only random access interface for aws s3 buckets",
"main": "index.js",
"scripts": {
"test": "standard && tape tests/**.test.js",
"test-travis": "nyc tape tests/**.test.js | tap-spec",
"tdd": "tape-watch tests/**.test.js",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"aws",
"s3",
"random-access"
],
"author": "Benjamin Forster",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/random-access-storage/random-access-s3.git"
},
"dependencies": {
"aws-sdk": "^2.188.0",
"random-access-storage": "^1.1.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"proxyquire": "^1.8.0",
"sinon": "^4.2.2",
"standard": "^10.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tape-watch": "^2.3.0"
}
}