-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
97 lines (97 loc) · 2.28 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
{
"name": "node-coap-client",
"version": "2.1.0",
"description": "Clientside implementation of the CoAP protocol with DTLS support.",
"keywords": [
"coap",
"coaps",
"dtls",
"iot",
"tradfri"
],
"main": "./build/CoapClient.js",
"types": "./build/CoapClient.d.ts",
"author": {
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
"contributors": [
"chrisEff (https://github.com/chrisEff)"
],
"license": "MIT",
"homepage": "https://github.com/AlCalzone/node-coap-client",
"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.26",
"@types/yargs": "^17.0.12",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.0",
"rimraf": "^3.0.0",
"semver": "^7.3.7",
"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.8.4",
"yargs": "^17.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/node-coap-client.git"
},
"dependencies": {
"debug": "^4.3.4",
"node-dtls-client": "^1.1.1"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"prebuild": "rimraf ./build",
"watch": "tsc --watch",
"test:ts": "mocha src/**/*.test.ts",
"test": "npm run test:ts",
"coverage": "nyc npm test",
"coveralls": "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": "release-script"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"build/**",
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"readme": "README.md"
}