-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "koa-ipfs-blog",
"version": "1.0.0",
"description": "Retrieve website data off IPFS and serve it.",
"main": "index.js",
"scripts": {
"start": "node restart-server.js",
"test": "KOA_ENV=test nyc --reporter=text ./node_modules/.bin/mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha --exit"
},
"keywords": [
"koa-ipfs-blog",
"api",
"koa",
"koa2",
"boilerplate",
"es6"
],
"author": "Chris Troutner <[email protected]>",
"license": "MIT",
"apidoc": {
"title": "koa-ipfs-blog",
"url": "localhost:5000"
},
"repository": "christroutner/koa-ipfs-blog",
"dependencies": {
"@chris.troutner/bch-js": "^1.4.18",
"glob": "^7.0.0",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-logger": "^3.1.0",
"koa-mount": "^4.0.0",
"koa-router": "^7.0.1",
"koa-static": "^5.0.0",
"shelljs": "^0.8.3",
"tree-kill": "^1.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-promise": "^2.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.3",
"nyc": "^14.0.0",
"semantic-release": "^15.13.24"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
}
}