forked from AlCalzone/node-tradfri-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.2 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
{
"name": "node-tradfri-client",
"version": "0.5.3",
"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]"
},
"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": ">= 6.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "0.0.30",
"@types/mocha": "^2.2.44",
"@types/node": "^6.0.90",
"@types/reflect-metadata": "0.0.5",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"ts-unused-exports": "^2.0.4",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"dependencies": {
"debug": "^3.1.0",
"node-coap-client": "^0.4.8",
"reflect-metadata": "^0.1.10"
},
"scripts": {
"watch": "tsc --watch",
"test:ts": "node node_modules/mocha/bin/mocha --require ts-node/register --require source-map-support/register src/**/*.test.ts",
"test": "npm run test:ts",
"coverage": "node node_modules/nyc/bin/nyc npm run test",
"lint:ts": "tslint",
"lint": "npm run lint:ts \"src/**/*.ts\"",
"find-unused-exports": "node --require ts-node/register ./maintenance/find-unused-exports.ts"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"build/**",
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"readme": "README.md"
}