forked from factrylabs/influx-opcua-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "influx-opcua-server",
"version": "0.1.0",
"description": "A simple server for exposing data inside InfluxDB over OPCUA",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-linux": "pkg --targets node16-linux-x64 index.js --config package.json --output influx-opcua-server-linux",
"build-alpine": "pkg --targets node16-alpine-x64 index.js --config package.json --output influx-opcua-server-alpine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/factrylabs/influx-opcua-server.git"
},
"keywords": [
"opcua",
"influxdb"
],
"author": "Jeroen Coussement <[email protected]> (https://www.factry.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/factrylabs/influx-opcua-server/issues"
},
"homepage": "https://github.com/factrylabs/influx-opcua-server#readme",
"pkg": {
"assets": [
"node_modules/node-opcua-server/certificates/*",
"node_modules/node-opcua-server-discovery/certificates/*",
"node_modules/node-opcua-client/certificates/*",
"node_modules/node-opcua-server/certificates/PKI/**/**/*"
]
},
"devDependencies": {
"pkg": "^5.6.0",
"standard": "^14.3.4"
},
"dependencies": {
"ajv": "^6.12.6",
"bluebird": "^3.7.2",
"influx": "^5.9.3",
"node-opcua": "^0.7.4"
}
}