-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
58 lines (58 loc) · 1.94 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
{
"name": "@node-wot/binding-coap",
"version": "0.8.0",
"description": "CoAP client & server protocol binding for node-wot",
"author": "Eclipse Thingweb <[email protected]> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": "https://github.com/eclipse/thingweb.node-wot/tree/master/packages/binding-coap",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"main": "dist/coap.js",
"types": "dist/coap.d.ts",
"devDependencies": {
"@node-wot/td-tools": "0.8.0",
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.18",
"@types/node": "16.4.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unused-imports": "^1.1.4",
"mocha": "^9.1.1",
"prettier": "^2.3.2",
"ts-node": "10.1.0",
"typescript": "4.1.3",
"typescript-standard": "^0.3.36"
},
"dependencies": {
"@node-wot/core": "0.8.0",
"coap": "0.25.0",
"node-coap-client": "1.0.8",
"rxjs": "5.5.11",
"slugify": "^1.4.5",
"wot-typescript-definitions": "^0.8.0-SNAPSHOT.18"
},
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register --extension ts",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"**/*.json\""
},
"bugs": {
"url": "https://github.com/eclipse/thingweb.node-wot/issues"
},
"homepage": "https://github.com/eclipse/thingweb.node-wot/tree/master/packages/binding-coap#readme",
"directories": {
"test": "test"
}
}