-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "chlu-did-service",
"description": "HTTP API Server for Chlu DID functionality",
"version": "0.1.0",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.6.0"
},
"main": "index.js",
"author": {
"name": "Chlu",
"email": "[email protected]",
"url": "https://chlu.io"
},
"license": "MIT",
"repository": "https://github.com/ChluNetwork/chlu-did-service.git",
"bugs": {
"url": "https://github.com/ChluNetwork/chlu-did-service/issues"
},
"homepage": "https://github.com/ChluNetwork/chlu-did-service/blob/master/README.md",
"bin": {
"chlu-did-service": "index.js"
},
"scripts": {
"start": "node index.js start",
"test": "mocha --opts tests/mocha.opts"
},
"dependencies": {
"chlu-ipfs-support": "ChluNetwork/chlu-ipfs-support#semver:~0.1.0",
"commander": "^2.15.1",
"express": "^4.16.3"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.1",
"sinon": "^5.0.7",
"supertest": "^3.0.0"
}
}