-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "bdsnp",
"version": "0.0.3",
"description": "Bcoin general p2p session negotiation",
"main": "./lib/bDSNP.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint lib/ test/ || exit 0",
"test": "mocha --reporter spec test/*-test.js",
"docs": "jsdoc -c jsdoc.json",
"cover": "istanbul cover node_modules/.bin/_mocha -- --reporter spec test/*-test.js",
"clean": "rm -rf coverage && rm -rf docs"
},
"keywords": [
"bcoin",
"plugin",
"indexing",
"indexer",
"index"
],
"author": "qwertyPie",
"repository": {
"type": "git",
"url": "https://github.com/Patrickdlg/bDSNP"
},
"license": "MIT",
"dependencies": {
"bcrypto": "^0.2.0",
"bdb": "0.0.2",
"bevent": "0.0.2",
"blgr": "0.0.1",
"bmutex": "0.0.1",
"bufio": "0.0.3",
"node-static": "^0.7.10",
"npm": "^5.8.0",
"websocket": "^1.0.25"
},
"devDependencies": {
"eslint": "^4.17.0",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.5.5",
"mocha": "^5.0.1"
}
}