-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "node-red-contrib-isa",
"version": "0.4.3",
"description": "A Node-RED node to build ISA-95 and ISA-88 based connectivity.",
"repository": {
"type": "git",
"url": "https://github.com/biancode/node-red-contrib-isa"
},
"keywords": [
"node-red",
"interoperability",
"IT OT middleware",
"DIN EN 62264",
"DIN EN 61512",
"ISA95",
"ISA-95",
"ISA88",
"ISA-88",
"ISA Standards",
"B2MML",
"BatchML",
"PackML",
"OPC UA",
"opcua",
"Manufacturing Execution System",
"MES",
"PLC"
],
"author": {
"name": "Klaus Landsdorf",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/biancode/node-red-contrib-isa/issues"
},
"node-red": {
"nodes": {
"ISA95OpcUaServerNode": "isa/ISA95-OPCUA-Server.js",
"ISAMachineMapperNode": "isa/ISA-Machine-Mapper.js",
"ISAMachineIOMapperNode": "isa/ISA-Machine-IOMapper.js",
"ISAMachineIdNode": "isa/ISA-MachineId.js"
}
},
"dependencies": {
"async": "^2.1.4",
"collections": "^5.0.6",
"node-opcua": "0.0.60",
"node-opcua-isa95": "0.0.2",
"prettyjson": "^1.2.1",
"should": "^11.1.2",
"treeify": "^1.0.1"
},
"main": "none",
"scripts": {
"test": "karma start isa.conf.js --log-level debug --single-run",
"build": "gulp publish",
"prepublish": "npm run build"
},
"files": [
"isa"
],
"devDependencies": {
"chai": "^3.5.0",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-htmlmin": "^3.0.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-uglify": "^2.0.0",
"jasmine-node": "^1.14.5",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"node-red": "^1.0.3",
"sinon": "^1.17.6",
"supertest": "^2.0.1",
"when": "^3.7.7"
},
"directories": {
"test": "test",
"lib": "src",
"example": "examples",
"doc": "docs"
}
}