-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "fuse-ipfs-proxy",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "ENV=LOCAL nodemon index.js",
"qa": "ENV=QA APPLICATION_NAME=IPFS_PROXY nodemon index.js",
"prod": "ENV=PRODUCTION APPLICATION_NAME=IPFS_PROXY nodemon index.js",
"build": "npm install",
"lint": "./node_modules/.bin/standard",
"test": "ENV=TEST ./node_modules/.bin/mocha --exit --timeout 30000",
"apidocs": "node_modules/apidoc/bin/apidoc -i app/ -o docs/"
},
"author": "LiorRabin",
"license": "MIT",
"dependencies": {
"@colucom/osseus": "~2.3.1",
"@colucom/osseus-logger": "~0.5.1",
"@colucom/osseus-mongo": "~0.3.1",
"@colucom/osseus-router": "~0.4.1",
"@colucom/osseus-server": "~0.2.1",
"ipfs-http-client": "^28.1.0",
"multer": "^1.4.1"
},
"devDependencies": {
"apidoc": "^0.17.7",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"standard": "^11.0.1"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"/docs/*",
"/test/*"
]
},
"apidoc": {
"title": "IPFS Proxy API",
"header": {
"title": "README",
"filename": "README.md"
}
}
}