-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 KB
/
package.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "solaredge-modbus-webservice",
"version": "0.0.2",
"description": "A simple integration webservice with Solar Edge inverters with Modbus protocol enabled",
"main": "dist/monitor.js",
"keywords": [
"solaredge",
"modbus",
"modbus-tcp",
"solar"
],
"author": "Enrique Jesús Cardona Cebrián",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/henry2man/solaredge-modbus-webservice.git"
},
"dependencies": {
"express": "^4.16.4",
"express-ws": "^4.0.0",
"prom-client": "^11.3.0",
"solaredge-modbus-client2": "file:local_modules/solaredge-modbus-client2",
"winston": "^3.4.0",
"lodash": ">=4.17.21"
},
"bugs": {
"url": "https://github.com/henry2man/solaredge-modbus-webservice/issues"
},
"homepage": "https://github.com/henry2man/solaredge-modbus-webservice#readme",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/express-ws": "^3.0.0",
"@types/node": "^12.0.0",
"@types/ws": "^6.0.1",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.1.8",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json",
"build": "tsc",
"prestart": "npm run build",
"dev": "ts-node-dev --respawn --transpileOnly ./src/monitor.ts",
"prod": "tsc && node ./dist/monitor.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}