forked from fh1ch/node-bacstack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "bacstack",
"version": "0.0.1-beta.13",
"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",
"compliance": "nyc --reporter=lcov --reporter=text-summary --report-dir reports/coverage-compliance mocha 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/adam-nielsen/node-bacstack.git"
},
"keywords": [
"bacnet",
"bacstack",
"building",
"automation"
],
"author": {
"name": "Fabio Huser",
"email": "fabio@fh1.ch"
},
"engines": {
"node": ">= 4.0.0"
},
"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.1.1",
"iconv-lite": "^0.4.24"
},
"devDependencies": {
"@commitlint/cli": "^7.5.1",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/travis-cli": "^7.5.1",
"chai": "^4.2.0",
"docdash": "^1.0.2",
"jscs": "^3.0.7",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"mocha": "^5.2.0",
"nyc": "^13.2.0"
}
}