Simplify DC current output type handling.
[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 6 },
3f40bc9c 7 "type": "module",
7dde0b73
JB
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/LucasBrazi06/ev-simulator.git"
11 },
12 "description": "Electric Vehicle charging stations simulator",
13 "author": "SAP E-Mobility Labs France <e-mobility@sap.com>",
14 "license": "Apache-2.0",
15 "licenses": [
16 {
17 "type": "Apache-2.0",
18 "url": "http://www.apache.org/licenses/LICENSE-2.0"
19 }
20 ],
d182a67a 21 "main": "src/start.js",
7dde0b73 22 "scripts": {
d182a67a
JB
23 "start": "node src/start.js",
24 "start:debug": "node --inspect src/start.js",
25 "start:prof": "node --prof src/start.js",
26 "start:doctorprof": "clinic doctor -- node src/start.js",
27 "start:flameprof": "clinic flame -- node src/start.js",
28 "start:bubbleprof": "clinic bubbleprof -- node src/start.js",
7dde0b73
JB
29 "lint": "eslint src",
30 "lint:fix": "eslint --fix src",
31 "flow": "flow",
32 "flow:check": "flow check src",
33 "flow:deps": "flow-typed install",
34 "test": "echo \"Error: no test specified\" && exit 1",
35 "clinic:clean": "clinic clean",
e27fae42 36 "npm-check": "npm-check",
c718e93d 37 "git:sdiff": "git diff && git submodule foreach 'git diff'",
e27fae42
JB
38 "git:supdate": "git submodule update --remote --merge",
39 "git:spush": "git push --recurse-submodules=on-demand"
7dde0b73
JB
40 },
41 "dependencies": {
7b7b6397 42 "uuid": "^8.3.1",
8235566f 43 "winston": "^3.3.3",
7dde0b73 44 "worker-threads-pool": "^2.0.0",
046994af 45 "ws": "^7.3.1"
7dde0b73
JB
46 },
47 "devDependencies": {
48 "babel-eslint": "^10.1.0",
870798c0 49 "clinic": "^7.0.0",
3f40bc9c 50 "eslint": "^7.12.1",
7dde0b73 51 "eslint-config-google": "^0.14.0",
2842565f 52 "eslint-config-node": "^4.1.0",
8235566f 53 "eslint-plugin-flowtype": "^5.2.0",
3f40bc9c 54 "flow-bin": "^0.137.0",
8ad2ca88 55 "flow-typed": "^3.2.1",
7dde0b73
JB
56 "npm-check": "^5.9.2"
57 }
58}