-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "vrpc",
"version": "3.1.1",
"description": "Variadic Remote Procedure Calls",
"main": "index.js",
"directories": {
"example": "examples",
"doc": "docs",
"test": "test"
},
"scripts": {
"build:addon": "ln -sf binding.gyp.no-auto binding.gyp && node-gyp rebuild && rm binding.gyp",
"build:browser": "./node_modules/.bin/webpack --stats-error-details",
"build:doc": "./node_modules/.bin/jsdoc2md -f vrpc/VrpcAdapter.js vrpc/VrpcAgent.js vrpc/VrpcClient.js vrpc/VrpcNative.js --param-list-format=list --separators > docs/api.md",
"test": "npm run test:adapter && npm run test:native && npm run test:agent && npm run test:client && npm run test:production",
"test:adapter": "./node_modules/.bin/mocha tests/adapter/*.js --exit",
"test:native": "./node_modules/.bin/mocha tests/native/*.js --exit",
"test:agent": "tests/agent/test.sh",
"test:client": "tests/client/test.sh",
"test:performance": "tests/performance/test.sh",
"test:production": "./node_modules/.bin/mocha tests/production/lifeCycleTest.js --timeout 30000 --exit && tests/production/test.sh"
},
"bin": {
"vrpc-agent-js": "./vrpc/vrpc-agent-js"
},
"keywords": [
"communication",
"iot",
"mqtt",
"edge-to-cloud",
"rpc",
"remote procedural calls",
"language binding",
"C++",
"C++ embedding",
"header-only"
],
"repository": {
"type": "git",
"url": "git+https://github.com/heisenware/vrpc.git"
},
"author": "Burkhard C. Heisen <burkhard.heisen@heisenware.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/heisenware/vrpc/issues"
},
"homepage": "https://vrpc.io",
"devDependencies": {
"chai": "^4.2.0",
"crypto-browserify": "^3.12.0",
"dockerode": "^3.2.0",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^9.1.3",
"os-browserify": "^0.3.0",
"sinon": "^7.3.2",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"files": [
"vrpc/",
"browser/",
"binding.gyp.no-auto"
],
"browser": "./browser/vrpc.js",
"dependencies": {
"ajv": "^6.10.0",
"argparse": "^2.0.1",
"buffer": "^6.0.3",
"caller": "^1.0.1",
"json-stringify-safe": "^5.0.1",
"mqtt": "^4.2.6",
"nanoid": "^3.1.23",
"process": "^0.11.10"
}
}