forked from accuser/node-red-contrib-bacnet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "node-red-contrib-bacnet",
"version": "0.1.0",
"private": false,
"description": "The BACnet toolbox package for Node-RED.",
"repository": {
"type": "git",
"url": "git+https://github.com/biancode/node-red-contrib-bacnet.git"
},
"dependencies": {
"debug": "4.1.0",
"@biancoroyal/bacstack": "0.0.1-beta.15",
"underscore": "1.9.1"
},
"keywords": [
"node-red",
"BACnet",
"bacnet",
"nodered",
"iiot",
"IIoT",
"biancode",
"modbus"
],
"author": "Klaus Landsdorf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/biancode/node-red-contrib-bacnet/issues"
},
"node-red": {
"nodes": {
"BACnet-Client": "bacnet/bacnet-client.js",
"BACnet-Device": "bacnet/bacnet-device.js",
"BACnet-Instance": "bacnet/bacnet-instance.js",
"BACnet-Read": "bacnet/bacnet-read.js",
"BACnet-Write": "bacnet/bacnet-write.js",
"BACnet-Command": "bacnet/bacnet-command.js"
}
},
"engines": {
"node": ">=6.10"
},
"homepage": "https://github.com/biancode/node-red-contrib-bacnet#readme",
"scripts": {
"test": "standard --fix && mocha test/* --reporter dot",
"build": "standard --fix && gulp publish",
"prepublishOnly": "standard --fix && npm run build && npm test",
"ci-publish": "ci-publish",
"release": "standard-version -a",
"rewrite-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"files": [
"docs",
"examples",
"bacnet"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"chai": "^4.2.0",
"ci-publish": "^1.3.1",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-htmlmin": "^5.0.1",
"gulp-jsdoc3": "^2.0.0",
"gulp-obfuscate": "^0.2.9",
"gulp-sequence": "^1.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nock": "^10.0.4",
"node-red": "^0.19.5",
"node-red-node-test-helper": "^0.1.8",
"npm-check-updates": "^2.15.0",
"pump": "^3.0.0",
"should": "^13.2.3",
"sinon": "^7.1.1",
"standard": "^12.0.1",
"standard-version": "^4.4.0",
"supertest": "^3.3.0",
"uglify-js": "^3.4.9",
"uglify-js-harmony": "^2.7.7",
"when": "^3.7.8"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"standard": {
"ignore": [
"code/",
"node_modules/",
"examples/",
"bacnet/",
"docs",
"src/public/",
"test"
]
},
"main": "index.js"
}