-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
49 lines (49 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
41
42
43
44
45
46
47
48
49
{
"name": "ocpp-rpc",
"version": "2.1.2",
"description": "A client & server implementation of the WAMP-like RPC-over-websocket system defined in the OCPP protocols (e.g. OCPP1.6-J and OCPP2.0.1).",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=lcov --reporter=text mocha"
},
"engines": {
"node": ">=17.3.0"
},
"keywords": [
"ocpp",
"rpc",
"websocket rpc",
"wamp",
"websockets",
"ocpp-j",
"ocpp1.6",
"ocpp2.0.1",
"ocpp1.6j",
"ocpp2.0.1j",
"rpc server",
"rpc client",
"ocpp rpc",
"ocpp websockets"
],
"author": {
"name": "Gareth Hughes",
"url": "https://github.com/mikuso"
},
"bugs": {
"url": "https://github.com/mikuso/ocpp-rpc/issues"
},
"repository": "github:mikuso/ocpp-rpc",
"homepage": "https://github.com/mikuso/ocpp-rpc#readme",
"license": "MIT",
"dependencies": {
"ajv": "8.14.0",
"ajv-formats": "^2.1.1",
"backoff": "^2.5.0",
"ws": "^8.5.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}