forked from BiancoRoyal/node-bacstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.43 KB
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
{
"name": "node-bacnet",
"version": "0.1.1-beta.1",
"description": "A BACnet protocol stack written in pure JavaScript.",
"main": "index.js",
"scripts": {
"changelog": "commitlint --from=master",
"lint": "jshint lib/ test/ index.js && jscs lib/ test/ index.js",
"test": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-test mocha test/unit/*.spec.js",
"integration": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-integration mocha test/integration/*.spec.js --timeout 5000",
"compliance": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-compliance mocha test/compliance/*.spec.js --timeout 5000",
"docs": "jsdoc -r -d ./docs -t node_modules/docdash ./lib ./index.js ./README.md",
"release": "standard-version -a",
"release:beta": "standard-version --prerelease beta",
"release:alpha": "standard-version --prerelease alpha",
"compose:build": "docker-compose build",
"compose:up": "docker-compose up --abort-on-container-exit --exit-code-from bacnet-client",
"docker": "npm run compose:build && npm run compose:up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BiancoRoyal/node-bacstack.git"
},
"keywords": [
"bacnet",
"fieldbus",
"building",
"automation",
"iot"
],
"author": {
"name": "Fabio Huser",
"email": "fabio@fh1.ch"
},
"contributors": [
{
"name": "Klaus Landsdorf",
"email": "klaus@iniationware.com"
},
{
"name": "Ingo Fischer",
"email": "iobroker@fischer-ka.de"
}
],
"engines": {
"node": ">= 8.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BiancoRoyal/node-bacstack/issues"
},
"homepage": "https://github.com/BiancoRoyal/node-bacstack#readme",
"dependencies": {
"debug": "^4.1.1",
"iconv-lite": "^0.5.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.1",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/travis-cli": "^7.5.1",
"chai": "^4.2.0",
"docdash": "^1.1.1",
"jscs": "^3.0.7",
"jsdoc": "^3.6.3",
"jshint": "^2.10.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"standard-version": "^8.0.0"
},
"files": [
"docs",
"examples",
"lib",
"index.js"
],
"directories": {
"example": "examples",
"test": "test"
}
}