-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 915 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
{
"name": "fabric-sdk-kvs-mongo",
"version": "0.0.1",
"description": "mongodb kvs for fabric-sdk-node",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"start-mongo-docker": "docker run --name mongo -d -p 27017:27017 mongo",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zhaochy1990/fabric-sdk-kvs-mongo.git"
},
"keywords": [
"fabric-ca",
"fabric-sdk-node",
"mongodb"
],
"author": "Zhao Chaoyi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zhaochy1990/fabric-sdk-kvs-mongo/issues"
},
"homepage": "https://github.com/zhaochy1990/fabric-sdk-kvs-mongo#readme",
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "5.2.0"
},
"dependencies": {
"debug": "3.1.0",
"mongodb": "3.1.0-beta4"
}
}