Release 1.0.28
[e-mobility-charging-stations-simulator.git] / package.json
1 {
2 "name": "ev-simulator",
3 "version": "1.0.28",
4 "engines": {
5 "node": "14.x.x",
6 "npm": "6.x.x"
7 },
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/jerome-benoit/ev-simulator.git"
11 },
12 "description": "Electric Vehicle charging stations simulator",
13 "author": "SAP E-Mobility Labs France <e-mobility@sap.com>",
14 "license": "Apache-2.0",
15 "licenses": [
16 {
17 "type": "Apache-2.0",
18 "url": "http://www.apache.org/licenses/LICENSE-2.0"
19 }
20 ],
21 "main": "dist/start.js",
22 "auto-changelog": {
23 "commitUrl": "https://github.com/jerome-benoit/ev-simulator/commit/{id}",
24 "issueUrl": "https://github.com/jerome-benoit/ev-simulator/issues/{id}",
25 "mergeUrl": "https://github.com/jerome-benoit/ev-simulator/pull/{id}",
26 "compareUrl": "https://github.com/jerome-benoit/ev-simulator/compare/{from}...{to}"
27 },
28 "scripts": {
29 "prestart": "npm run build",
30 "start": "cross-env NODE_ENV=production node -r source-map-support/register dist/start.js",
31 "start:debug": "cross-env NODE_ENV=production node -r source-map-support/register --inspect dist/start.js",
32 "start:dev": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.js",
33 "start:dev:debug": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.js",
34 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.js",
35 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.js",
36 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.js",
37 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.js",
38 "rollup": "rollup --config",
39 "build": "npm run rollup",
40 "build:dev": "npm run rollup -- --environment BUILD:development",
41 "build:dev:watch": "npm run rollup -- --environment BUILD:development --watch",
42 "build:mta": "mbt build",
43 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
44 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
45 "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'",
46 "pretest": "npm run build:dev",
47 "test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' nyc mocha test/**/*Test.ts",
48 "coverage": "nyc report --reporter=lcov",
49 "coverage:html": "nyc report --reporter=html",
50 "clinic:clean": "clinic clean",
51 "npm-check": "npm-check",
52 "robohydra": "robohydra test/robohydra/config.json",
53 "git:sinit": "git submodule update --init --recursive --force",
54 "git:sdiff": "git diff && git submodule foreach 'git diff'",
55 "git:supdate": "git submodule update --remote --recursive --merge",
56 "git:spush": "git push --recurse-submodules=on-demand",
57 "release": "release-it"
58 },
59 "dependencies": {
60 "basic-ftp": "^4.6.6",
61 "mongodb": "^3.6.10",
62 "poolifier": "^2.0.2",
63 "source-map-support": "^0.5.19",
64 "tar": "^6.1.0",
65 "tslib": "^2.3.0",
66 "uuid": "^8.3.2",
67 "winston": "^3.3.3",
68 "winston-daily-rotate-file": "^4.5.5",
69 "ws": "^7.5.3"
70 },
71 "optionalDependencies": {
72 "bufferutil": "^4.0.3",
73 "utf-8-validate": "^5.0.5"
74 },
75 "devDependencies": {
76 "@istanbuljs/nyc-config-typescript": "^1.0.1",
77 "@rollup/plugin-json": "^4.1.0",
78 "@types/mocha": "^8.2.3",
79 "@types/mochawesome": "^6.2.1",
80 "@types/node": "^14.17.5",
81 "@types/tar": "^4.0.5",
82 "@types/uuid": "^8.3.1",
83 "@types/ws": "^7.4.6",
84 "@typescript-eslint/eslint-plugin": "^4.28.3",
85 "@typescript-eslint/parser": "^4.28.3",
86 "auto-changelog": "^2.3.0",
87 "clinic": "^9.0.0",
88 "cross-env": "^7.0.3",
89 "eslint": "^7.30.0",
90 "eslint-plugin-import": "^2.23.4",
91 "eslint-plugin-jsdoc": "^35.4.3",
92 "eslint-plugin-node": "^11.1.0",
93 "expect": "^27.0.6",
94 "mbt": "^1.2.2",
95 "mocha": "^9.0.2",
96 "mochawesome": "^6.2.2",
97 "npm-check": "^5.9.2",
98 "nyc": "^15.1.0",
99 "release-it": "^14.10.0",
100 "robohydra": "^0.6.9",
101 "rollup": "^2.53.2",
102 "rollup-plugin-analyzer": "^4.0.0",
103 "rollup-plugin-copy": "^3.4.0",
104 "rollup-plugin-delete": "^2.0.0",
105 "rollup-plugin-istanbul": "^3.0.0",
106 "rollup-plugin-terser": "^7.0.2",
107 "rollup-plugin-typescript2": "^0.30.0",
108 "ts-node": "^10.1.0",
109 "typescript": "^4.3.5"
110 }
111 }