59fe0ea644f05a3c0708ec7a05e7e8131f76c235
[e-mobility-charging-stations-simulator.git] / package.json
1 {
2 "name": "ev-simulator",
3 "version": "1.0.0",
4 "engines": {
5 "node": "14.x.x"
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 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",
35 "npm-check": "npm-check",
36 "git:sdiff": "git diff && git submodule foreach 'git diff'",
37 "git:supdate": "git submodule update --remote --merge",
38 "git:spush": "git push --recurse-submodules=on-demand"
39 },
40 "dependencies": {
41 "uuid": "^8.3.1",
42 "winston": "^3.3.3",
43 "worker-threads-pool": "^2.0.0",
44 "ws": "^7.3.1"
45 },
46 "devDependencies": {
47 "babel-eslint": "^10.1.0",
48 "clinic": "^7.0.0",
49 "eslint": "^7.11.0",
50 "eslint-config-google": "^0.14.0",
51 "eslint-config-node": "^4.1.0",
52 "eslint-plugin-flowtype": "^5.2.0",
53 "flow-bin": "^0.136.0",
54 "flow-typed": "^3.2.1",
55 "npm-check": "^5.9.2"
56 }
57 }