Commit | Line | Data |
---|---|---|
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": { | |
7b7b6397 | 41 | "uuid": "^8.3.1", |
8235566f | 42 | "winston": "^3.3.3", |
7dde0b73 | 43 | "worker-threads-pool": "^2.0.0", |
046994af | 44 | "ws": "^7.3.1" |
7dde0b73 JB |
45 | }, |
46 | "devDependencies": { | |
47 | "babel-eslint": "^10.1.0", | |
870798c0 | 48 | "clinic": "^7.0.0", |
88fab3e7 | 49 | "eslint": "^7.11.0", |
7dde0b73 | 50 | "eslint-config-google": "^0.14.0", |
2842565f | 51 | "eslint-config-node": "^4.1.0", |
8235566f | 52 | "eslint-plugin-flowtype": "^5.2.0", |
7b7b6397 | 53 | "flow-bin": "^0.135.0", |
8ad2ca88 | 54 | "flow-typed": "^3.2.1", |
7dde0b73 JB |
55 | "npm-check": "^5.9.2" |
56 | } | |
57 | } |