This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
{
"name": "@origin/ipfs-proxy",
"version": "1.0.0",
"description": "A proxy that validates Origin content being uploaded and downloaded from Origin's IPFS servers",
"author": "Origin Protocol Inc",
"license": "MIT",
"scripts": {
"lint": "eslint '**/*.js' && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\"",
"start": "per-env",
"start:development": "nodemon src/app.js",
"start:production": "node src/app.js",
"test": "mocha --timeout=10000",
"test:load": "node load.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OriginProtocol/origin.git"
},
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"homepage": "https://github.com/OriginProtocol/origin#readme",
"dependencies": {
"busboy": "0.3.1",
"file-type": "12.4.2",
"http-proxy": "1.18.1",
"ipfs": "0.40.0",
"ipfsd-ctl": "2.1.0",
"is-json": "2.0.1",
"logplease": "1.2.15",
"per-env": "1.0.2",
"superagent": "5.2.1",
"zlib": "1.0.5"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/register": "7.9.0",
"autocannon": "4.6.0",
"chai": "4.2.0",
"form-data": "3.0.0",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"supertest": "4.0.2",
"webrtcsupport": "2.2.0"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}