Type a bit some attributes.
[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 ],
6af9012e 20 "main": "dist/start.js",
7dde0b73 21 "scripts": {
79411696 22 "start": "node -r source-map-support/register dist/start.js",
6af9012e 23 "prestart": "npm run build",
79411696
JB
24 "start:debug": "node -r source-map-support/register --inspect dist/start.js",
25 "start:prof": "node -r source-map-support/register --prof dist/start.js",
26 "start:doctorprof": "clinic doctor -- node -r source-map-support/register dist/start.js",
27 "start:flameprof": "clinic flame -- node -r source-map-support/register dist/start.js",
28 "start:bubbleprof": "clinic bubbleprof -- node -r source-map-support/register dist/start.js",
6af9012e
JB
29 "build": "npm run tsc",
30 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
31 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
32 "tsc": "tsc",
33 "test": "echo \"Error: no tests implemented\" && exit 1",
7dde0b73 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": {
79411696 41 "source-map-support": "^0.5.19",
6af9012e 42 "tslib": "^2.0.3",
7b7b6397 43 "uuid": "^8.3.1",
8235566f 44 "winston": "^3.3.3",
7dde0b73 45 "worker-threads-pool": "^2.0.0",
046994af 46 "ws": "^7.3.1"
7dde0b73
JB
47 },
48 "devDependencies": {
6af9012e
JB
49 "@types/node": "^14.14.6",
50 "@types/uuid": "^8.3.0",
51 "@types/worker-threads-pool": "^2.0.0",
52 "@types/ws": "^7.2.9",
53 "@typescript-eslint/eslint-plugin": "^4.6.0",
54 "@typescript-eslint/parser": "^4.6.0",
870798c0 55 "clinic": "^7.0.0",
6af9012e 56 "cross-env": "^7.0.2",
3f40bc9c 57 "eslint": "^7.12.1",
6af9012e
JB
58 "npm-check": "^5.9.2",
59 "typescript": "^4.0.5"
7dde0b73
JB
60 }
61}