Initial portage to TypeScript.
[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 dist/start.js",
23 "prestart": "npm run build",
24 "start:debug": "node --inspect dist/start.js",
25 "start:prof": "node --prof dist/start.js",
26 "start:doctorprof": "clinic doctor -- node dist/start.js",
27 "start:flameprof": "clinic flame -- node dist/start.js",
28 "start:bubbleprof": "clinic bubbleprof -- node dist/start.js",
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",
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 "tslib": "^2.0.3",
42 "uuid": "^8.3.1",
43 "winston": "^3.3.3",
44 "worker-threads-pool": "^2.0.0",
45 "ws": "^7.3.1"
46 },
47 "devDependencies": {
48 "@types/node": "^14.14.6",
49 "@types/uuid": "^8.3.0",
50 "@types/worker-threads-pool": "^2.0.0",
51 "@types/ws": "^7.2.9",
52 "@typescript-eslint/eslint-plugin": "^4.6.0",
53 "@typescript-eslint/parser": "^4.6.0",
54 "clinic": "^7.0.0",
55 "cross-env": "^7.0.2",
56 "eslint": "^7.12.1",
57 "npm-check": "^5.9.2",
58 "typescript": "^4.0.5"
59 }
60 }