forked from 3box/3box-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 KB
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
70
71
72
73
74
75
76
{
"name": "3box-api-node",
"version": "0.0.0",
"description": "3box",
"main": "src/node.js",
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "rm -rf ./tmp ; mkdir -p ./tmp/test/one ; jest --forceExit --detectOpenHandles --coverage --runInBand",
"start": "node ./src/run.js",
"start:dev": "./node_modules/.bin/nodemon ./src/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/3box-api-node.git"
},
"keywords": [
"ipfs",
"orbitdb"
],
"author": "3box",
"license": "MIT",
"bugs": {
"url": "https://github.com/3box/3box-pinning-node/issues"
},
"homepage": "https://github.com/3box/3box-pinning-node#readme",
"dependencies": {
"3box-orbitdb-plugins": "^1.0.5",
"3id-resolver": "^0.0.4",
"analytics-node": "^3.3.0",
"aws-sdk": "2.414.0",
"axios": "^0.19.0",
"cids": "0.7.1",
"datastore-s3": "0.3.0",
"did-resolver": "0.0.6",
"dotenv": "^6.2.0",
"exectimer": "^2.2.1",
"express": "^4.16.4",
"ipfs-block-service": "0.16.0",
"ipfs-log": "4.3.6",
"ipfs-repo": "^0.28.0",
"ipld": "0.25.0",
"is-ipfs": "^0.6.1",
"js-sha256": "^0.9.0",
"multihashes": "0.4.14",
"muport-did-resolver": "^0.3.1",
"orbit-db": "0.21.3",
"orbit-db-access-controllers": "0.2.2",
"orbit-db-cache-redis": "0.0.3",
"orbit-db-feedstore": "1.5.1",
"orbit-db-identity-provider": "0.1.6",
"orbit-db-io": "0.1.1",
"orbit-db-kvstore": "1.5.1",
"redis": "^2.8.0",
"url-parse": "^1.4.7",
"yargs": "^13.2.2"
},
"jest": {
"testEnvironment": "node"
},
"bin": {
"3box-pinning-node": "./src/node.js"
},
"devDependencies": {
"ioredis": "^4.14.1",
"ioredis-mock": "^4.18.2",
"jest": "^23.6.0",
"nodemon": "^1.19.4",
"standard": "^12.0.1",
"supertest": "^4.0.2"
},
"standard": {
"env": [
"jest"
]
}
}