-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 911 Bytes
/
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
{
"name": "node-opcua-coreaas",
"version": "1.1.0",
"description": "An extension for node-opcua implementing coreAAS Information Model",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npx tsc & node dist/index.js",
"demo": "npx tsc & node dist/demo.js",
"demo2": "npx tsc & node dist/demo2.js",
"doc": "npx typedoc --excludeExternals --excludeNotExported --excludePrivate src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"opcua",
"node",
"coreaas",
"aas",
"industry4.0"
],
"author": "Marco Salafia",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OPCUAUniCT/node-opcua-coreaas"
},
"devDependencies": {
"typedoc": "^0.15.8",
"typescript": "^3.9.7"
},
"dependencies": {
"node-opcua": "^2.21.0"
}
}