-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "peer-node",
"version": "0.0.8",
"description": "Peer Node for constructing p2p networks. Supports RSA keypair encryption of data payload ",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nthomas20/peer-node.git"
},
"author": "Nathaniel Thomas <[email protected]>",
"license": "GPL-3.0",
"private": false,
"keywords": [
"p2p",
"peer network",
"peer",
"networking",
"distributed network",
"network",
"computer cluster"
],
"_id": "[email protected]",
"dependencies": {
"keypair": "^1.0.1",
"promise-socket": "^3.1.1"
},
"devDependencies": {
"assert": "^1.4.1",
"chai": "^4.1.2",
"http-server": "^0.12.3",
"jsdoc": "^3.6.4",
"mocha": "^8.3.2"
},
"scripts": {
"postinstall": "npm shrinkwrap --dev",
"generate-jsdocs": "jsdoc --configure .jsdoc.json --verbose",
"jsdocs": "http-server ./docs -s; echo Access via 127.0.0.1:8080",
"test": "standard src/* && mocha ./test/tests --timeout 5000"
}
}