-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "node-red-contrib-ocpp",
"version": "1.3.6",
"description": "A set of nodes to communicate via OCPP to a compatible charge box or central system",
"main": "ocpp-req.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"mon": "nodemon -e js,html --exec node-red"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Argonne-National-Laboratory/node-red-contrib-ocpp.git"
},
"keywords": [
"node-red",
"ocpp",
"ocpp SOAP",
"ocpp JSON",
"ocpp centralsystem",
"ocpp chargepoint"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"ocpp-req": "ocpp/ocpp-req.js",
"ocpp-cp-req": "ocpp/ocpp-cp-req.js",
"ocpp-remote-cp": "ocpp/ocpp-remote-cp.js",
"ocpp-remote-cs": "ocpp/ocpp-remote-cs.js",
"ocpp-server": "ocpp/ocpp-server.js",
"ocpp-cp-json": "ocpp/ocpp-cp-json.js"
}
},
"author": "Bryan Nystrom <[email protected]> (https://github.com/bnystrom)",
"contributors": [
"Jason D. Harper <[email protected]> (https://github.com/jayharper)",
"James Golvich (https://github.com/jamesgol)",
"BeenThereScrewedUp (https://github.com/BeenThereScrewedUp)"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Argonne-National-Laboratory/node-red-contrib-ocpp/issues"
},
"homepage": "https://github.com/Argonne-National-Laboratory/node-red-contrib-ocpp#readme",
"dependencies": {
"debug": "^4.3.1",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"soap": "^1.0.0",
"ws": "^8.12.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.7"
}
}