Ensure OCPP error messages always follow the OCPP specs
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73
JB
1{
2 "name": "ev-simulator",
3 "version": "1.0.0",
4 "engines": {
8575f275 5 "node": "14.x.x"
7dde0b73
JB
6 },
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/LucasBrazi06/ev-simulator.git"
10 },
11 "description": "Electric Vehicle charging stations simulator",
12 "author": "SAP E-Mobility Labs France <e-mobility@sap.com>",
13 "license": "Apache-2.0",
14 "licenses": [
15 {
16 "type": "Apache-2.0",
17 "url": "http://www.apache.org/licenses/LICENSE-2.0"
18 }
19 ],
20 "main": "src/index.js",
21 "scripts": {
22 "start": "node src/index.js",
23 "start:debug": "node --inspect-brk src/index.js",
24 "start:prof": "node --prof src/index.js",
25 "start:doctorprof": "clinic doctor -- node src/index.js",
26 "start:flameprof": "clinic flame -- node src/index.js",
27 "start:bubbleprof": "clinic bubbleprof -- node src/index.js",
28 "lint": "eslint src",
29 "lint:fix": "eslint --fix src",
30 "flow": "flow",
31 "flow:check": "flow check src",
32 "flow:deps": "flow-typed install",
33 "test": "echo \"Error: no test specified\" && exit 1",
34 "clinic:clean": "clinic clean",
e27fae42 35 "npm-check": "npm-check",
c718e93d 36 "git:sdiff": "git diff && git submodule foreach 'git diff'",
e27fae42
JB
37 "git:supdate": "git submodule update --remote --merge",
38 "git:spush": "git push --recurse-submodules=on-demand"
7dde0b73
JB
39 },
40 "dependencies": {
fdd20270 41 "uuid": "^8.1.0",
7dde0b73
JB
42 "winston": "^3.2.1",
43 "worker-threads-pool": "^2.0.0",
2e3ac96d 44 "ws": "^7.3.0"
7dde0b73
JB
45 },
46 "devDependencies": {
47 "babel-eslint": "^10.1.0",
0ad7a06c 48 "clinic": "^6.0.2",
bfd40cc2 49 "eslint": "^7.2.0",
7dde0b73 50 "eslint-config-google": "^0.14.0",
2842565f
JB
51 "eslint-config-node": "^4.1.0",
52 "eslint-plugin-flowtype": "^5.1.3",
0ad7a06c 53 "flow-bin": "^0.127.0",
7dde0b73
JB
54 "flow-typed": "^3.1.0",
55 "npm-check": "^5.9.2"
56 }
57}