Performance statistics: add JSON file storage support.
[e-mobility-charging-stations-simulator.git] / package.json
1 {
2 "name": "ev-simulator",
3 "version": "1.0.42",
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 "contributors": [
15 {
16 "name": "Jérôme Benoit",
17 "email": "jerome.benoit@piment-noir.org",
18 "url": "https://github.com/jerome-benoit"
19 }
20 ],
21 "license": "Apache-2.0",
22 "licenses": [
23 {
24 "type": "Apache-2.0",
25 "url": "http://www.apache.org/licenses/LICENSE-2.0"
26 }
27 ],
28 "main": "dist/start.js",
29 "auto-changelog": {
30 "commitUrl": "https://github.com/jerome-benoit/ev-simulator/commit/{id}",
31 "issueUrl": "https://github.com/jerome-benoit/ev-simulator/issues/{id}",
32 "mergeUrl": "https://github.com/jerome-benoit/ev-simulator/pull/{id}",
33 "compareUrl": "https://github.com/jerome-benoit/ev-simulator/compare/{from}...{to}"
34 },
35 "scripts": {
36 "prestart": "npm run build",
37 "start": "cross-env NODE_ENV=production node -r source-map-support/register dist/start.js",
38 "start:debug": "cross-env NODE_ENV=production node -r source-map-support/register --inspect dist/start.js",
39 "start:dev": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.js",
40 "start:dev:debug": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.js",
41 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.js",
42 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.js",
43 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.js",
44 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.js",
45 "rollup": "rollup --config",
46 "build": "npm run rollup",
47 "build:dev": "npm run rollup -- --environment BUILD:development",
48 "build:dev:watch": "npm run rollup -- --environment BUILD:development --watch",
49 "build:mta": "mbt build",
50 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
51 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
52 "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'",
53 "test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' nyc mocha test/**/*Test.ts",
54 "coverage": "nyc report --reporter=lcov",
55 "coverage:html": "nyc report --reporter=html",
56 "clinic:clean": "clinic clean",
57 "npm-check": "npm-check",
58 "robohydra": "robohydra test/robohydra/config.json",
59 "git:sinit": "git submodule update --init --recursive --force",
60 "git:sdiff": "git diff && git submodule foreach 'git diff'",
61 "git:supdate": "git submodule update --remote --recursive --merge",
62 "git:spush": "git push --recurse-submodules=on-demand",
63 "release": "release-it"
64 },
65 "dependencies": {
66 "basic-ftp": "^4.6.6",
67 "mongodb": "^4.1.1",
68 "poolifier": "^2.0.2",
69 "source-map-support": "^0.5.19",
70 "tar": "^6.1.10",
71 "tslib": "^2.3.1",
72 "uuid": "^8.3.2",
73 "winston": "^3.3.3",
74 "winston-daily-rotate-file": "^4.5.5",
75 "ws": "^8.2.0"
76 },
77 "optionalDependencies": {
78 "bufferutil": "^4.0.3",
79 "utf-8-validate": "^5.0.5"
80 },
81 "devDependencies": {
82 "@istanbuljs/nyc-config-typescript": "^1.0.1",
83 "@rollup/plugin-json": "^4.1.0",
84 "@types/mocha": "^9.0.0",
85 "@types/mochawesome": "^6.2.1",
86 "@types/node": "^14.17.11",
87 "@types/tar": "^4.0.5",
88 "@types/uuid": "^8.3.1",
89 "@types/ws": "^7.4.7",
90 "@typescript-eslint/eslint-plugin": "^4.29.3",
91 "@typescript-eslint/parser": "^4.29.3",
92 "auto-changelog": "^2.3.0",
93 "clinic": "^9.0.0",
94 "cross-env": "^7.0.3",
95 "eslint": "^7.32.0",
96 "eslint-plugin-import": "^2.24.2",
97 "eslint-plugin-jsdoc": "^36.0.8",
98 "eslint-plugin-node": "^11.1.0",
99 "expect": "^27.0.6",
100 "mocha": "^9.1.0",
101 "mochawesome": "^6.2.2",
102 "npm-check": "^5.9.2",
103 "nyc": "^15.1.0",
104 "release-it": "^14.11.5",
105 "robohydra": "^0.6.9",
106 "rollup": "^2.56.3",
107 "rollup-plugin-analyzer": "^4.0.0",
108 "rollup-plugin-copy": "^3.4.0",
109 "rollup-plugin-delete": "^2.0.0",
110 "rollup-plugin-istanbul": "^3.0.0",
111 "rollup-plugin-terser": "^7.0.2",
112 "rollup-plugin-typescript2": "^0.30.0",
113 "ts-node": "^10.2.1",
114 "typescript": "^4.3.5"
115 }
116 }