-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
109 lines (109 loc) · 2.72 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
{
"name": "node-tradfri-client",
"version": "3.2.0",
"description": "Library to talk to IKEA Trådfri Gateways without external binaries",
"keywords": [
"coap",
"coaps",
"dtls",
"iot",
"tradfri",
"ikea",
"lighting"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"contributors": [
"neophob (https://github.com/neophob)",
"rogierhofboer (https://github.com/rogierhofboer)",
"jareware (https://github.com/jareware)"
],
"license": "MIT",
"homepage": "https://github.com/AlCalzone/node-tradfri-client",
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/node-tradfri-client.git"
},
"bugs": {
"url": "https://github.com/AlCalzone/node-tradfri-client/issues"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@alcalzone/release-script": "~3.5.9",
"@alcalzone/release-script-plugin-license": "~3.5.9",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "4.1.7",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.32",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.9",
"@types/yargs": "^17.0.12",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"dts-bundle": "^0.7.3",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.4",
"yargs": "^17.5.1"
},
"dependencies": {
"alcalzone-shared": "^4.0.8",
"debug": "^4.3.4",
"mdns-server": "^1.0.11",
"node-coap-client": "^2.1.0",
"reflect-metadata": "^0.1.13"
},
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc",
"build:dts": "dts-bundle --configJson dts-bundle.json",
"watch": "tsc --watch",
"test:ts": "mocha src/**/*.test.ts",
"test": "npm run test:ts -- --watch",
"coverage": "nyc npm run test:ts",
"coveralls": "nyc report --reporter=text-lcov | coveralls -v",
"show-coverage": "npm run coverage && start ./coverage/index.html",
"lint:ts": "tslint \"src/**/*.ts\"",
"lint": "npm run lint:ts",
"release": "release-script"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"build/**",
"src/**/*.test.ts",
"**/*.d.ts"
],
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"readme": "README.md"
}