forked from AlCalzone/node-tradfri-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.65 KB
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
{
"name": "react-native-tradfri-client",
"version": "1.3.4",
"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": "d.griesel@gmx.net"
},
"contributors": [
"neophob (https://github.com/neophob)",
"rogierhofboer (https://github.com/rogierhofboer)"
],
"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.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "0.0.30",
"@types/mocha": "^5.2.0",
"@types/node": "^6.0.90",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^4.3.1",
"@types/sinon-chai": "^2.7.29",
"@types/yargs": "^11.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"colors": "^1.2.3",
"coveralls": "^3.0.0",
"mocha": "^5.1.1",
"nyc": "^13.0.1",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"sinon": "^5.0.2",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.5",
"ts-node": "^6.2.0",
"tslint": "^5.9.1",
"typescript": "^2.9.2",
"yargs": "^11.0.0"
},
"dependencies": {
"alcalzone-shared": "^1.0.1",
"react-native-coap-client": "netbeast/react-native-coap-client",
"react-native-mdns-server": "netbeast/react-native-mdns-server",
"reflect-metadata": "^0.1.12"
},
"scripts": {
"build": "tsc",
"prebuild": "rimraf ./build",
"watch": "tsc --watch",
"test:ts": "node_modules/.bin/mocha",
"test": "node_modules/.bin/mocha --watch",
"coverage": "node_modules/.bin/nyc npm run test:ts",
"coveralls": "node_modules/.bin/nyc report --reporter=text-lcov | coveralls -v",
"show-coverage": "npm run coverage && start ./coverage/index.html",
"lint:ts": "tslint",
"lint": "npm run lint:ts \"src/**/*.ts\"",
"release": "node --require ts-node/register maintenance/release.ts"
},
"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"
}