37a78fb6b1c3872c7f90b84c4de1fe4958f958c7
[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": "dist/start.js",
21 "scripts": {
22 "start": "node -r source-map-support/register dist/start.js",
23 "prestart": "npm run build",
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",
29 "build": "npm run tsc",
30 "build:clean": "rimraf ./dist",
31 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
32 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
33 "tsc": "tsc",
34 "test": "echo \"Error: no tests implemented\" && exit 1",
35 "clinic:clean": "clinic clean",
36 "npm-check": "npm-check",
37 "git:sdiff": "git diff && git submodule foreach 'git diff'",
38 "git:supdate": "git submodule update --remote --merge",
39 "git:spush": "git push --recurse-submodules=on-demand"
40 },
41 "dependencies": {
42 "source-map-support": "^0.5.19",
43 "tslib": "^2.0.3",
44 "uuid": "^8.3.1",
45 "winston": "^3.3.3",
46 "worker-threads-pool": "^2.0.0",
47 "ws": "^7.4.0"
48 },
49 "optionalDependencies": {
50 "bufferutil": "^4.0.2",
51 "utf-8-validate": "^5.0.3"
52 },
53 "devDependencies": {
54 "@types/node": "^14.14.6",
55 "@types/uuid": "^8.3.0",
56 "@types/worker-threads-pool": "^2.0.0",
57 "@types/ws": "^7.2.9",
58 "@typescript-eslint/eslint-plugin": "^4.6.1",
59 "@typescript-eslint/parser": "^4.6.1",
60 "clinic": "^7.0.0",
61 "cross-env": "^7.0.2",
62 "eslint": "^7.13.0",
63 "npm-check": "^5.9.2",
64 "rimraf": "^3.0.2",
65 "typescript": "^4.0.5"
66 }
67 }