-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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
{
"name": "codius-ca",
"version": "0.0.0-semantic-release",
"description": "Codius Certificate Authority (CA) implementation",
"main": "app.js",
"scripts": {
"start": "node .",
"test": "nyc mocha",
"lint": "eslint .",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codius/ca.git"
},
"keywords": [
"blob",
"chain",
"hash",
"blockchain",
"hashes",
"hashchain",
"merkle",
"tree",
"shared",
"log"
],
"author": "Stefan Thomas <justmoon@members.fsf.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/codius/ca/issues"
},
"homepage": "https://github.com/codius/ca#readme",
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"codecov": "^1.0.1",
"condition-circle": "^1.5.0",
"cz-conventional-changelog": "^1.2.0",
"env-restorer": "^1.0.0",
"eslint": "^3.6.1",
"eslint-config-standard": "^6.1.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"ghooks": "^1.3.2",
"mocha": "^3.0.2",
"mock-res": "justmoon/mock-res#fix/st-to-string",
"nyc": "^8.3.0",
"pem": "^1.8.3",
"readable-mock-req": "^0.2.2",
"semantic-release": "^4.3.5",
"validate-commit-msg": "^2.8.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"koa": "^1.2.1",
"koa-bodyparser": "^2.2.0",
"koa-logger": "^1.3.0",
"koa-router": "^5.4.0",
"reduct": "^2.0.0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyConditions": "condition-circle"
}
}