chore: version 1.2.5
[e-mobility-charging-stations-simulator.git] / package.json
1 {
2 "name": "e-mobility-charging-stations-simulator",
3 "version": "1.2.5",
4 "engines": {
5 "node": ">=16.9.0"
6 },
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
10 },
11 "description": "Electric vehicle charging stations simulator",
12 "author": "SAP E-Mobility <e-mobility@sap.com>",
13 "contributors": [
14 {
15 "name": "Jérôme Benoit",
16 "email": "jerome.benoit@piment-noir.org",
17 "url": "https://github.com/jerome-benoit"
18 }
19 ],
20 "license": "Apache-2.0",
21 "licenses": [
22 {
23 "type": "Apache-2.0",
24 "url": "http://www.apache.org/licenses/LICENSE-2.0"
25 }
26 ],
27 "type": "module",
28 "exports": [
29 "./dist/start.mjs"
30 ],
31 "auto-changelog": {
32 "commitUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/commit/{id}",
33 "issueUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/issues/{id}",
34 "mergeUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/pull/{id}",
35 "compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
36 },
37 "mikro-orm": {
38 "tsConfigPath": "./tsconfig-orm.json",
39 "useTsNode": true
40 },
41 "scripts": {
42 "preinstall": "node skip-preinstall.cjs || npx only-allow pnpm",
43 "prepare": "node prepare.cjs",
44 "build-requirements": "node --no-warnings build-requirements.mjs",
45 "start": "pnpm run build && cross-env NODE_ENV=production node -r source-map-support/register dist/start.mjs",
46 "start:dev": "pnpm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.mjs",
47 "start:dev:debug": "pnpm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.mjs",
48 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.mjs",
49 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.mjs",
50 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.mjs",
51 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.mjs",
52 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node -r source-map-support/register dist/start.mjs",
53 "rollup": "pnpm run build-requirements && rollup --config",
54 "build": "pnpm run rollup",
55 "build:cf": "pnpm run clean:node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm run rollup",
56 "build:dev": "pnpm run rollup -- --environment BUILD:development",
57 "build:dev:watch": "pnpm run rollup -- --environment BUILD:development --watch",
58 "clean:dist": "npx rimraf dist",
59 "clean:node_modules": "npx rimraf node_modules",
60 "lint": "cross-env TIMING=1 eslint --cache --ext .js,.cjs,.mjs,.ts src",
61 "lint:fix": "cross-env TIMING=1 eslint --cache --fix --ext .js,.cjs,.mjs,.ts src",
62 "format": "prettier --cache --write .",
63 "test": "c8 mocha test/**/*Test.ts",
64 "test:debug": "mocha --no-parallel --inspect test/**/*Test.ts",
65 "coverage": "c8 report --reporter=lcov",
66 "coverage:html": "c8 report --reporter=html",
67 "clinic:clean": "clinic clean",
68 "robohydra": "robohydra test/robohydra/config.json",
69 "git:sinit": "git submodule update --init --recursive --force",
70 "git:sdiff": "git diff && git submodule foreach 'git diff'",
71 "git:supdate": "git submodule update --remote --recursive --merge",
72 "git:spush": "git push --recurse-submodules=on-demand",
73 "release": "release-it"
74 },
75 "overrides": {
76 "cacheable-request": "^10.2.7",
77 "d3-color": "^3.1.0"
78 },
79 "dependencies": {
80 "@mikro-orm/core": "^5.6.16",
81 "@mikro-orm/mariadb": "^5.6.16",
82 "@mikro-orm/reflection": "^5.6.16",
83 "@mikro-orm/sqlite": "^5.6.16",
84 "ajv": "^8.12.0",
85 "ajv-formats": "^2.1.1",
86 "basic-ftp": "^5.0.2",
87 "chalk": "^5.2.0",
88 "http-status-codes": "^2.2.0",
89 "just-clone": "^6.2.0",
90 "just-merge": "^3.2.0",
91 "logform": "^2.5.1",
92 "mnemonist": "^0.39.5",
93 "moment": "^2.29.4",
94 "mongodb": "^5.2.0",
95 "poolifier": "^2.4.6",
96 "proper-lockfile": "^4.1.2",
97 "source-map-support": "^0.5.21",
98 "tar": "^6.1.13",
99 "tslib": "^2.5.0",
100 "winston": "^3.8.2",
101 "winston-daily-rotate-file": "^4.7.1",
102 "ws": "^8.13.0"
103 },
104 "optionalDependencies": {
105 "bufferutil": "^4.0.7",
106 "utf-8-validate": "^6.0.3"
107 },
108 "devDependencies": {
109 "@commitlint/cli": "^17.5.1",
110 "@commitlint/config-conventional": "^17.4.4",
111 "@mikro-orm/cli": "^5.6.16",
112 "@release-it/bumper": "^4.0.2",
113 "@rollup/plugin-json": "^6.0.0",
114 "@rollup/plugin-terser": "^0.4.1",
115 "@rollup/plugin-typescript": "^11.1.0",
116 "@types/mocha": "^10.0.1",
117 "@types/mochawesome": "^6.2.1",
118 "@types/node": "^18.15.11",
119 "@types/proper-lockfile": "^4.1.2",
120 "@types/sinon": "^10.0.13",
121 "@types/tar": "^6.1.4",
122 "@types/ws": "^8.5.4",
123 "@typescript-eslint/eslint-plugin": "^5.57.1",
124 "@typescript-eslint/parser": "^5.57.1",
125 "auto-changelog": "^2.4.0",
126 "c8": "^7.13.0",
127 "clinic": "^12.1.0",
128 "cross-env": "^7.0.3",
129 "eslint": "^8.38.0",
130 "eslint-config-prettier": "^8.8.0",
131 "eslint-import-resolver-typescript": "^3.5.5",
132 "eslint-plugin-import": "^2.27.5",
133 "eslint-plugin-jsdoc": "^40.1.2",
134 "eslint-plugin-n": "^15.7.0",
135 "eslint-plugin-prettier": "^4.2.1",
136 "eslint-plugin-tsdoc": "^0.2.17",
137 "expect": "^29.5.0",
138 "husky": "^8.0.3",
139 "lint-staged": "^13.2.1",
140 "mocha": "^10.2.0",
141 "mochawesome": "^7.1.3",
142 "prettier": "^2.8.7",
143 "release-it": "^15.10.1",
144 "rimraf": "^4.4.1",
145 "robohydra": "^0.6.9",
146 "rollup": "^3.20.2",
147 "rollup-plugin-analyzer": "^4.0.0",
148 "rollup-plugin-copy": "^3.4.0",
149 "rollup-plugin-delete": "^2.0.0",
150 "semver": "^7.3.8",
151 "sinon": "^15.0.3",
152 "ts-node": "^10.9.1",
153 "typescript": "^5.0.4"
154 }
155 }