forked from etrel-development/hackaton-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·30 lines (30 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·30 lines (30 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "Etrel.OCPP.Emulator",
"version": "1.1.3",
"description": "Emulates OCPP 1.6 Central System and Charge Point client",
"main": "ocpp-central-system-server.js",
"scripts": {
"lint": "eslint . && npx prettier --check .",
"server": "node ocpp-central-system-server.js",
"client": "node ocpp-charge-point-client.js"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
]
},
"author": "mitja.gustin@etrel.si",
"license": "ISC",
"dependencies": {
"moment": "^2.29.1",
"ws": "^7.4.5"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "2.4.1"
}
}