-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
49
50
{
"name": "twincat-ads-webservice-exporter",
"version": "1.0.1",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MarcusCalidus/twincat-ads-webservice-exporter"
},
"keywords": [
"Prometheus",
"Beckhoff",
"TwinCAT",
"ADS",
"WebService"
],
"author": {
"name": "Marco Warm",
"email": "[email protected]",
"url": "https://github.com/MarcusCalidus"
},
"description": "a generic Prometheus exporter for for Beckhoff PLC via ADS WebService",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"postinstall": "npm run build",
"build": "tsc",
"_prestart": "npm run build",
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.27.2",
"express": "^4.18.1",
"moment": "^2.29.4",
"node-http-xhr": "^1.3.4",
"rxjs": "^7.5.6",
"xmldom": "^0.6.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/yamljs": "^0.2.31",
"@types/express": "^4.17.13",
"@types/node": "^18.7.16",
"@types/xmldom": "^0.1.31",
"concurrently": "^7.4.0",
"nodemon": "^2.0.19",
"tslint": "^6.1.3",
"typescript": "^4.8.2"
}
}