This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.58 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
{
"name": "knxlib",
"version": "0.0.1",
"description": "knx library in javascript",
"scripts": {
"?info": "List available script",
"info": "npm-scripts-info",
"?postinstall": "echo prune not required npm packages",
"postinstall": "npm prune",
"?reinstall": "echo clean npm cache and install missing packages",
"reinstall": "npm cache clean && npm install",
"?start": "echo build library and start busmonitor example",
"start": "npm-run-all build_dist && node --require source-map-support/register dist/src/examples/busmonitor.js",
"start_test": "npm-run-all build_dist && node --require source-map-support/register dist/src/examples/test.js",
"?clean_all": "echo clean all output",
"clean_all": "shx rm -rf ./dist",
"?clean_dist": "echo clean package output",
"clean_dist": "shx rm -rf ./dist/src",
"?clean_spec": "echo clean test output",
"clean_spec": "shx rm -rf ./dist/spec",
"?lint_src": "echo Run lint against source",
"lint_src": "tslint --formatters-dir ./node_modules/custom-tslint-formatters/formatters --format grouped --config ./tslint.json --force --project ./src/tsconfig.json --type-check \"src/**/*.ts\"",
"?lint_spec": "echo Run lint against tests",
"lint_spec": "tslint --formatters-dir ./node_modules/custom-tslint-formatters/formatters --format grouped --config ./spec/tslint.json --force --project ./spec/tsconfig.json --type-check \"spec/**/*.ts\"",
"?compile_dist": "echo Compile codebase",
"compile_dist": "tsc --project ./src --outDir ./dist/src --pretty",
"?compile_spec": "echo Compile codebase",
"compile_spec": "tsc --project ./spec --outDir ./dist/spec --pretty",
"?build_dist": "echo build codebase",
"build_dist": "npm-run-all clean_dist lint_src compile_dist",
"?build_spec": "echo build test",
"build_spec": "npm-run-all clean_spec lint_spec compile_spec",
"?test_mocha": "echo run mocha test ",
"test_mocha": "mocha --recursive --full-trace --check-leaks --require source-map-support/register --reporter spec ./dist/spec",
"?test": "echo build library, test and start test ",
"test": "npm-run-all build_spec test_mocha"
},
"keywords": [
"knxlib",
"knx",
"client",
"library",
"busmonitor",
"knxd",
"eib",
"eibd",
"knxd library",
"knx client",
"eib client",
"knxd client",
"eibd client",
"house automation",
"smart home"
],
"author": {
"name": "Thomas Spalinger",
"email": "spali@spali.ch"
},
"repository": {
"type": "git",
"url": "https://github.com/spali/knxlib"
},
"bugs": {
"url": "https://github.com/spali/knxlib/issues"
},
"homepage": "https://github.com/spali/knxlib",
"license": "MIT",
"devDependencies": {
"@types/chai": "~3.5.1",
"@types/core-js": "~0.9.41",
"@types/deep-extend": "~0.4.30",
"@types/mocha": "~2.2.40",
"@types/node": "~6.0.68",
"@types/pino": "~3.0.1",
"@types/reflect-metadata": "~0.0.5",
"@types/sinon": "~2.1.2",
"@types/sinon-chai": "~2.7.27",
"chai": "~3.5.0",
"custom-tslint-formatters": "~2.1.0",
"mocha": "^3.2.0",
"npm-run-all": "~4.0.2",
"npm-scripts-info": "~0.3.6",
"shx": "~0.2.2",
"sinon": "~2.1.0",
"sinon-chai": "^2.9.0",
"source-map-support": "~0.4.14",
"ts-node": "~1.7.3",
"tslint": "~5.2.0",
"typescript": "~2.3.0"
},
"dependencies": {
"binary-parser": "~1.1.5",
"binary-protocol": "~0.0.0",
"core-js": "~2.4.1",
"deep-extend": "~0.4.2",
"inet": "~0.0.3",
"pino": "~4.2.4",
"reflect-metadata": "~0.1.10",
"rxjs": "~5.3.1"
}
}