chore: version 1.2.11
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73 1{
7f774a55 2 "name": "e-mobility-charging-stations-simulator",
aa49f5ec 3 "version": "1.2.11",
7dde0b73 4 "engines": {
d509fd24
JB
5 "node": ">=16.9.0",
6 "pnpm": ">= 8.0.0"
7dde0b73 7 },
8f074ebf
JB
8 "volta": {
9 "node": "20.0.0"
10 },
7dde0b73
JB
11 "repository": {
12 "type": "git",
7f774a55 13 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
7dde0b73 14 },
e6159ce8 15 "description": "Electric vehicle charging stations simulator",
68250247 16 "author": "SAP E-Mobility <e-mobility@sap.com>",
4160581a
JB
17 "contributors": [
18 {
19 "name": "Jérôme Benoit",
20 "email": "jerome.benoit@piment-noir.org",
21 "url": "https://github.com/jerome-benoit"
22 }
23 ],
7dde0b73
JB
24 "license": "Apache-2.0",
25 "licenses": [
26 {
27 "type": "Apache-2.0",
28 "url": "http://www.apache.org/licenses/LICENSE-2.0"
29 }
30 ],
92ce5473 31 "type": "module",
db9b23ee 32 "exports": [
db9b23ee
JB
33 "./dist/start.mjs"
34 ],
d22589b3 35 "auto-changelog": {
7f774a55
JB
36 "commitUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/commit/{id}",
37 "issueUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/issues/{id}",
38 "mergeUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/pull/{id}",
39 "compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
d22589b3 40 },
ae8ee665 41 "mikro-orm": {
85c8a4cf 42 "tsConfigPath": "./tsconfig-orm.json",
ae8ee665
JB
43 "useTsNode": true
44 },
7dde0b73 45 "scripts": {
a90bec52 46 "preinstall": "node skip-preinstall.cjs || npx --yes only-allow pnpm",
92ce5473 47 "prepare": "node prepare.cjs",
653b69b4 48 "build-requirements": "node --no-warnings build-requirements.mjs",
c7f157db
JB
49 "start": "pnpm build && cross-env NODE_ENV=production node -r source-map-support/register dist/start.mjs",
50 "start:dev": "pnpm build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.mjs",
51 "start:dev:debug": "pnpm build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.mjs",
653b69b4 52 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.mjs",
abe9e9dd
JB
53 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.mjs",
54 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.mjs",
55 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.mjs",
56 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node -r source-map-support/register dist/start.mjs",
c7f157db
JB
57 "rollup": "pnpm build-requirements && rollup --config",
58 "build": "pnpm rollup",
59 "build:cf": "pnpm clean:node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm rollup",
60 "build:dev": "pnpm rollup -- --environment BUILD:development",
61 "build:dev:watch": "pnpm rollup -- --environment BUILD:development --watch",
e592ba1d
JB
62 "clean:dist": "npx rimraf dist",
63 "clean:node_modules": "npx rimraf node_modules",
92ce5473
JB
64 "lint": "cross-env TIMING=1 eslint --cache --ext .js,.cjs,.mjs,.ts src",
65 "lint:fix": "cross-env TIMING=1 eslint --cache --fix --ext .js,.cjs,.mjs,.ts src",
e60a5ba3 66 "format": "prettier --cache --write .",
12240a2e 67 "test": "c8 mocha test/**/*Test.ts",
3e985d18 68 "test:debug": "mocha --no-parallel --inspect test/**/*Test.ts",
12240a2e
JB
69 "coverage": "c8 report --reporter=lcov",
70 "coverage:html": "c8 report --reporter=html",
7dde0b73 71 "clinic:clean": "clinic clean",
47e22477 72 "robohydra": "robohydra test/robohydra/config.json",
5c97c3b3 73 "git:sinit": "git submodule update --init --recursive --force",
c718e93d 74 "git:sdiff": "git diff && git submodule foreach 'git diff'",
3a860d9e 75 "git:supdate": "git submodule update --remote --recursive --merge",
84e52c2c 76 "git:spush": "git push --recurse-submodules=on-demand",
cedae80d 77 "release": "release-it"
7dde0b73 78 },
db64a53b
JB
79 "overrides": {
80 "cacheable-request": "^10.2.7",
81 "d3-color": "^3.1.0"
82 },
7dde0b73 83 "dependencies": {
89787c99
JB
84 "@mikro-orm/core": "^5.6.16",
85 "@mikro-orm/mariadb": "^5.6.16",
86 "@mikro-orm/reflection": "^5.6.16",
87 "@mikro-orm/sqlite": "^5.6.16",
bbe10d5f 88 "ajv": "^8.12.0",
e3018bc4 89 "ajv-formats": "^2.1.1",
17db4acc 90 "basic-ftp": "^5.0.2",
653b69b4 91 "chalk": "^5.2.0",
1f7fa4de 92 "http-status-codes": "^2.2.0",
088ee3c1
JB
93 "just-clone": "^6.2.0",
94 "just-merge": "^3.2.0",
5a2a53cf 95 "logform": "^2.5.1",
4a5a7863 96 "mnemonist": "^0.39.5",
5b7a0892 97 "moment": "^2.29.4",
481c3802 98 "mongodb": "^5.3.0",
cb137ce1 99 "poolifier": "^2.4.11",
c63c21bc 100 "proper-lockfile": "^4.1.2",
1dc29974 101 "source-map-support": "^0.5.21",
0145fecd 102 "tar": "^6.1.13",
6a6acd38 103 "tslib": "^2.5.0",
d273692c 104 "winston": "^3.8.2",
2820900f 105 "winston-daily-rotate-file": "^4.7.1",
ab9c8862 106 "ws": "^8.13.0"
7dde0b73 107 },
3d337bdb 108 "optionalDependencies": {
ef85c95a 109 "bufferutil": "^4.0.7",
d994fe7c 110 "utf-8-validate": "^6.0.3"
3d337bdb 111 },
7dde0b73 112 "devDependencies": {
761684ec
JB
113 "@commitlint/cli": "^17.6.1",
114 "@commitlint/config-conventional": "^17.6.1",
89787c99 115 "@mikro-orm/cli": "^5.6.16",
d4c84337 116 "@release-it/bumper": "^4.0.2",
b78290ea 117 "@rollup/plugin-json": "^6.0.0",
825c7c42 118 "@rollup/plugin-terser": "^0.4.1",
ab8e7b97 119 "@rollup/plugin-typescript": "^11.1.0",
f704ec19 120 "@types/mocha": "^10.0.1",
47e22477 121 "@types/mochawesome": "^6.2.1",
3742487d 122 "@types/node": "^18.16.0",
c63c21bc 123 "@types/proper-lockfile": "^4.1.2",
89bf789a 124 "@types/sinon": "^10.0.14",
08683829 125 "@types/tar": "^6.1.4",
1cc4b9e0 126 "@types/ws": "^8.5.4",
b26c6593
JB
127 "@typescript-eslint/eslint-plugin": "^5.59.0",
128 "@typescript-eslint/parser": "^5.59.0",
6e19d740 129 "auto-changelog": "^2.4.0",
08683829 130 "c8": "^7.13.0",
5a9d7452 131 "clinic": "^12.1.0",
93b6750e 132 "cross-env": "^7.0.3",
858018eb 133 "eslint": "^8.39.0",
62340a29 134 "eslint-config-prettier": "^8.8.0",
e88cc460 135 "eslint-import-resolver-typescript": "^3.5.5",
6db3502d 136 "eslint-plugin-import": "^2.27.5",
6a739b35 137 "eslint-plugin-jsdoc": "^43.0.7",
11e56c59 138 "eslint-plugin-n": "^15.7.0",
71828518 139 "eslint-plugin-prettier": "^4.2.1",
0e4fa348 140 "eslint-plugin-tsdoc": "^0.2.17",
61aad68d 141 "expect": "^29.5.0",
bbe10d5f 142 "husky": "^8.0.3",
62e69a6b 143 "lint-staged": "^13.2.1",
d439da5c 144 "mocha": "^10.2.0",
39dca63f 145 "mochawesome": "^7.1.3",
3742487d 146 "prettier": "^2.8.8",
1169786c 147 "release-it": "^15.10.1",
75f84cb1 148 "rimraf": "^5.0.0",
47e22477 149 "robohydra": "^0.6.9",
858018eb 150 "rollup": "^3.20.7",
cb1948a3 151 "rollup-plugin-analyzer": "^4.0.0",
1329403f 152 "rollup-plugin-copy": "^3.4.0",
44b07a21 153 "rollup-plugin-delete": "^2.0.0",
b26c6593 154 "semver": "^7.5.0",
6a739b35 155 "sinon": "^15.0.4",
9090050f 156 "ts-node": "^10.9.1",
1ec93f5c 157 "typescript": "^5.0.4"
7dde0b73
JB
158 }
159}