Add Current.Import measurand support.
[e-mobility-charging-stations-simulator.git] / package.json
index 7704de26ed99b8c37be12581e9d152be94856c8f..f3f85574a63ce23e4fb30cf10391c90c0c5698c0 100644 (file)
@@ -2,8 +2,9 @@
   "name": "ev-simulator",
   "version": "1.0.0",
   "engines": {
-    "node": ">=13.14.0"
+    "node": "14.x.x"
   },
+  "type": "module",
   "repository": {
     "type": "git",
     "url": "https://github.com/LucasBrazi06/ev-simulator.git"
       "url": "http://www.apache.org/licenses/LICENSE-2.0"
     }
   ],
-  "main": "src/index.js",
+  "main": "src/start.js",
   "scripts": {
-    "start": "node src/index.js",
-    "start:debug": "node --inspect-brk src/index.js",
-    "start:prof": "node --prof src/index.js",
-    "start:doctorprof": "clinic doctor -- node src/index.js",
-    "start:flameprof": "clinic flame -- node src/index.js",
-    "start:bubbleprof": "clinic bubbleprof -- node src/index.js",
+    "start": "node src/start.js",
+    "start:debug": "node --inspect src/start.js",
+    "start:prof": "node --prof src/start.js",
+    "start:doctorprof": "clinic doctor -- node src/start.js",
+    "start:flameprof": "clinic flame -- node src/start.js",
+    "start:bubbleprof": "clinic bubbleprof -- node src/start.js",
     "lint": "eslint src",
     "lint:fix": "eslint --fix src",
     "flow": "flow",
     "git:spush": "git push --recurse-submodules=on-demand"
   },
   "dependencies": {
-    "uuid": "^8.0.0",
-    "winston": "^3.2.1",
+    "uuid": "^8.3.1",
+    "winston": "^3.3.3",
     "worker-threads-pool": "^2.0.0",
-    "ws": "^7.3.0"
+    "ws": "^7.3.1"
   },
   "devDependencies": {
     "babel-eslint": "^10.1.0",
-    "clinic": "^5.0.1",
-    "eslint": "^7.0.0",
+    "clinic": "^7.0.0",
+    "eslint": "^7.12.1",
     "eslint-config-google": "^0.14.0",
-    "eslint-config-node": "^4.0.0",
-    "eslint-plugin-flowtype": "^5.0.3",
-    "eslint-plugin-node": "^11.1.0",
-    "flow-bin": "^0.125.1",
-    "flow-typed": "^3.1.0",
+    "eslint-config-node": "^4.1.0",
+    "eslint-plugin-flowtype": "^5.2.0",
+    "flow-bin": "^0.137.0",
+    "flow-typed": "^3.2.1",
     "npm-check": "^5.9.2"
   }
 }