-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
62
63
64
65
66
67
68
69
{
"name": "dat-share",
"version": "1.0.0",
"description": "Webrecorders dat intergration",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git@github.com:webrecorder/dat-share.git"
},
"author": "Webrecorder",
"contributors": [
"John Berlin",
"Ilya Kreymer"
],
"license": "MIT",
"private": false,
"keywords": [
"webrecorder",
"dat",
"s3",
"aws",
"hyperdrive",
"storage"
],
"dependencies": {
"aws-sdk": "^2.437.0",
"boom": "^7.3.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"cors": "^2.8.5",
"dat": "^13.12.2",
"dat-encoding": "^5.0.1",
"dat-node": "^3.5.15",
"dat-s3-hybrid-storage": "webrecorder/dat-s3-hybrid-storage#develop",
"dat-storage": "^1.1.1",
"dat-swarm-defaults": "^1.0.2",
"debug": "^4.1.1",
"discovery-swarm": "^5.1.4",
"eventemitter3": "^3.1.0",
"fastify": "^2.2.0",
"fastify-boom": "^0.1.0",
"fastify-graceful-shutdown": "^2.0.1",
"fastify-plugin": "^1.5.0",
"fastify-swagger": "^2.3.2",
"fs-extra": "^7.0.1",
"hypercore-protocol": "^6.9.0",
"hyperdrive": "^9.14.5",
"supports-color": "^6.1.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/node": "^11.13.4",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"prettier-eslint-cli": "^4.7.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"scripts": {
"format": "prettier --write 'lib/**/*.js' 'test/**/*.js'",
"lint": "eslint lib test",
"start": "node run.js",
"test": "ava --verbose -c 1 --serial"
}
}