-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
129 lines (129 loc) · 3.64 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "node-red-contrib-bacnet",
"version": "0.3.0",
"private": false,
"description": "The BACnet toolbox package for Node-RED from the P4NR B2B Community.",
"repository": {
"type": "git",
"url": "git+https://github.com/BiancoRoyal/node-red-contrib-bacnet.git"
},
"dependencies": {
"debug": "~4.3.4",
"node-bacnet": "~0.2.4",
"underscore": "~1.13.6"
},
"keywords": [
"node-red",
"plusfornodered",
"bacnet",
"fieldbus",
"biancoroyal"
],
"author": "P4NR Support <[email protected]> (https://plus4nodered.com/)",
"contributors": [
{
"name": "P4NR B2B Community <[email protected]> (https://p4nr.com/)"
},
{
"name": "Iniationware GmbH <[email protected]> (https://iniationware.com/)"
},
{
"name": "Ingo Fischer (Gameforge)"
},
{
"name": "Fabio Huser (node-bacstack)"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BiancoRoyal/node-red-contrib-bacnet/issues"
},
"node-red": {
"version": ">=2",
"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": ">=14"
},
"homepage": "https://p4nr.com/",
"scripts": {
"test": "standard --fix && mocha test --recursive --reporter dot --timeout 5000",
"test-with-coverage": "istanbul cover _mocha --report lcovonly -- --recursive --timeout 5000 -R spec && cat ./coverage/lcov.info | codacy-coverage --token $CODACY_COVERAGE_TOKEN && rm -rf ./coverage",
"coverage": "npm run build && npm test && istanbul cover _mocha -- --recursive --timeout 5000",
"build": "standard --fix && gulp",
"prepublishOnly": "npm run build && npm run rewrite-changelog && npm test",
"ci-publish": "ci-publish",
"release": "standard-version -a",
"release:beta": "standard-version --prerelease beta",
"release:alpha": "standard-version --prerelease alpha",
"rewrite-changelog": "gulp changelog",
"postinstall": "node ./supporter.js",
"clean": "gulp clean",
"dev-link": "npm i && npm run build && npm link",
"dev-unlink": "npm unlink node-red-contrib-bacnet -g"
},
"files": [
"docs",
"examples",
"bacnet",
"supporter.js"
],
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"conventional-changelog-cli": "^2.0.27",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-htmlmin": "^5.0.1",
"gulp-jsdoc3": "^3.0.0",
"gulp-replace": "^1.0.0",
"gulp-sequence": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"istanbul": "0.4.5",
"jasmine-node": "^3.0.0",
"js-beautify": "^1.10.2",
"mocha": "^7.2.0",
"nock": "^12.0.3",
"node-red": "^1.0.6",
"node-red-node-test-helper": "^0.2.4",
"pump": "^3.0.0",
"should": "^13.2.3",
"sinon": "^9.0.2",
"standard": "^14.3.1",
"standard-version": "^8.0.0",
"supertest": "^4.0.2",
"uglify-js": "^3.6.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"
}