Initial commit
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73
JB
1{
2 "name": "ev-simulator",
3 "version": "1.0.0",
4 "engines": {
5 "node": "12.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-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",
35 "npm-check": "npm-check"
36 },
37 "dependencies": {
38 "uuid": "^7.0.3",
39 "winston": "^3.2.1",
40 "worker-threads-pool": "^2.0.0",
41 "ws": "^7.2.3"
42 },
43 "devDependencies": {
44 "babel-eslint": "^10.1.0",
45 "clinic": "^5.0.1",
46 "eslint": "^6.8.0",
47 "eslint-config-esnext": "^4.0.0",
48 "eslint-config-google": "^0.14.0",
49 "eslint-config-node": "^4.0.0",
50 "eslint-plugin-flowtype": "^4.7.0",
51 "eslint-plugin-node": "^11.1.0",
52 "eslint-plugin-promise": "^4.2.1",
53 "flow-bin": "^0.122.0",
54 "flow-typed": "^3.1.0",
55 "npm-check": "^5.9.2"
56 }
57}