-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "@node-wot/core",
"version": "0.8.15",
"description": "W3C Web of Things (WoT) Servient framework",
"author": "Eclipse Thingweb <thingweb-dev@eclipse.org> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/core",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/"
],
"main": "dist/core.js",
"types": "dist/core.d.ts",
"devDependencies": {
"@types/content-type": "^1.1.8",
"@types/debug": "^4.1.7",
"@types/uritemplate": "^0.3.4",
"@types/uuid": "^8.3.1"
},
"dependencies": {
"@node-wot/td-tools": "0.8.15",
"@petamoriken/float16": "^3.1.1",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"cbor": "^8.1.0",
"content-type": "^1.0.5",
"debug": "^4.3.4",
"uritemplate": "0.3.4",
"uuid": "^7.0.3",
"web-streams-polyfill": "^3.0.1"
},
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"**/*.json\"",
"test": "mocha --unhandled-rejections=strict --require ts-node/register --extension ts"
},
"bugs": {
"url": "https://github.com/eclipse-thingweb/node-wot/issues"
},
"homepage": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/core#readme",
"directories": {
"test": "test"
},
"keywords": [],
"eslintConfig": {
"extends": "../../.eslintrc.js"
}
}