-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "bacstack",
"version": "0.0.1-beta.14",
"description": "A BACnet protocol stack written in pure JavaScript.",
"main": "index.js",
"scripts": {
"changelog": "commitlint --from=origin/master",
"lint": "eslint lib/ test/ index.js",
"test": "jest --coverageDirectory reports/coverage-test test/unit/*.spec.js",
"integration": "jest --coverageDirectory reports/coverage-integration test/integration/*.spec.js",
"compliance": "jest --coverageDirectory reports/coverage-compliance test/compliance/*.spec.js",
"docs": "jsdoc -d ./docs -t node_modules/docdash ./lib ./index.js ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fh1ch/node-bacstack.git"
},
"keywords": [
"bacnet",
"bacstack",
"building",
"automation"
],
"author": {
"name": "Fabio Huser",
"email": "[email protected]"
},
"engines": {
"node": ">= 12.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"text-summary",
"cobertura",
"lcov"
],
"collectCoverageFrom": [
"lib/**/*.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fh1ch/node-bacstack/issues"
},
"homepage": "https://github.com/fh1ch/node-bacstack#readme",
"dependencies": {
"debug": "^4.3.1",
"iconv-lite": "^0.6.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"docdash": "^1.2.0",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.0.6",
"jsdoc": "^3.6.7"
}
}