forked from coapjs/node-coap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.92 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
{
"name": "coap",
"version": "1.3.0",
"description": "A CoAP library for node modelled after 'http'",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"pretest": "npm run build",
"prepublishOnly": "npm run build",
"test": "mocha ./dist/test --exit",
"coverage": "c8 -a --reporter=lcov --reporter=text --reporter=html npm run test",
"lint": "eslint *.ts",
"lint:fix": "eslint *.ts --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/coapjs/node-coap.git"
},
"keywords": [
"coap",
"m2m",
"iot",
"client",
"server",
"udp",
"observe",
"internet of things",
"messaging"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/capitalize": "^2.0.0",
"@types/chai": "^4.3.3",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.0",
"@types/node": "^20.9.2",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.0",
"mocha": "^10.1.0",
"c8": "^8.0.1",
"sinon": "^12.0.1",
"source-map-support": "^0.5.21",
"timekeeper": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/lru-cache": "^7.10.10",
"bl": "^6.0.0",
"@types/readable-stream": "^2.3.15",
"capitalize": "^2.0.4",
"coap-packet": "^1.1.1",
"debug": "^4.3.4",
"fastseries": "^2.0.0",
"lru-cache": "^10.0.3",
"readable-stream": "^4.2.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/models",
"dist/lib",
"examples/"
]
}