-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "json-ws",
"version": "3.5.1",
"author": "ChaosGroup (c) 2013-2018",
"description": "JSON-RPC based Web Services with automatic help and client side source creation for Node.js/Go/JavaScript/Java/.Net/Python/PHP",
"keywords": [
"json",
"rpc",
"remote procedure call",
"json-ws",
"json-rpc",
"web service",
"web socket",
"socket-io",
"javascript",
"go",
"golang"
],
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"homepage": "https://github.com/ChaosGroup/json-ws",
"repository": "https://github.com/ChaosGroup/json-ws",
"bugs": "https://github.com/ChaosGroup/json-ws/issues",
"license": "MIT",
"dependencies": {
"co": "^4.5.2",
"ejs": "^2.3.4",
"express": "^4.13.4",
"lodash": "^4.17.4",
"node-uuid": "^1.4.8",
"path-to-regexp": "^1.2.1",
"request": "^2.67.0",
"semver": "^5.1.0"
},
"peerDependencies": {
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"ws": "^1.0.1"
},
"devDependencies": {
"bluebird": "^3.2.1",
"body-parser": "^1.14.2",
"chai": "^3.5.0",
"eslint": "5.2.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-eslint-plugin": "^1.4.0",
"eslint-plugin-prettier": "2.6.2",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"prettier": "1.13.7"
},
"scripts": {
"test": "mocha 'test/integration/**/*.js' 'test/unit/**/*.js'",
"test-unit": "mocha 'test/unit/**/*.js'",
"test-integration": "mocha 'test/integration/**/*.js'",
"lint": "eslint .",
"jsdoc": "jsdoc . -c conf.json",
"cover": "istanbul cover _mocha 'test/unit/**/*.js'",
"example-app": "nodemon examples/adhoc/app.js"
}
}