-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "random-access-http",
"version": "2.0.2",
"description": "A random access interface for files served over http",
"main": "index.js",
"scripts": {
"test": "standard && tape tests/**.test.js",
"test-travis": "standard && nyc tape tests/**.test.js | tap-spec",
"tdd": "tape-watch tests/**.test.js",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/random-access-storage/random-access-http.git"
},
"keywords": [
"http",
"https",
"random-access",
"random-access-storage"
],
"author": "Bret Comnes",
"contributors": "Benjamin Forster",
"license": "ISC",
"bugs": {
"url": "https://github.com/random-access-storage/random-access-http/issues"
},
"homepage": "https://github.com/random-access-storage/random-access-http#readme",
"dependencies": {
"axios": "^0.19.0",
"random-access-storage": "^1.4.0",
"url": "^0.11.0"
},
"devDependencies": {
"coveralls": "^3.0.9",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"st": "^2.0.0",
"standard": "^14.3.1",
"stoppable": "^1.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tape-watch": "^2.3.0"
}
}