-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 900 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
40
{
"name": "tcp-emitter-client",
"version": "1.0.0",
"description": "Client for TCP Emitter Server",
"main": "index.js",
"scripts": {
"docs": "jsdoc -r -c conf.json && hs -c0 ./out",
"test": "standard && nyc --reporter=html mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcp-emitter/node-client.git"
},
"keywords": [
"Event",
"Emitter",
"TCP",
"Server",
"Client"
],
"author": "Luca Tabone <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tcp-emitter/node-client/issues"
},
"homepage": "https://github.com/tcp-emitter/node-client#readme",
"standard": {
"env": {
"mocha": true
}
},
"devDependencies": {
"http-server": "^0.10.0",
"jsdoc": "^3.5.4",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"sinon": "^3.2.1",
"standard": "^10.0.3"
}
}