forked from eclipse-thingweb/node-wot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.55 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.55 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
{
"name": "@node-wot/browser-bundle",
"version": "1.0.0",
"description": "A node-wot bundle that can run in a web browser",
"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/browser-bundle",
"publishConfig": {
"access": "public"
},
"module": "./dist/esm/browser-bundle/index.js",
"types": "types/index.d.ts",
"files": [
"dist/"
],
"main": "dist/wot-bundle.min.js",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@esm-bundle/chai-as-promised": "^7.1.1",
"@jspm/core": "^2.1.0",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"esbuild": "^0.25.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"json-schema-faker": "^0.5.6",
"rimraf": "^6.0.1"
},
"scripts": {
"build": "node esbuild.js",
"test:browser": "wtr \"test/**/*.js\" --node-resolve",
"format": "prettier --write *.js test/*.js *.ts \"**/*.json\""
},
"bugs": {
"url": "https://github.com/eclipse-thingweb/node-wot/issues"
},
"homepage": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/browser-bundle#readme",
"keywords": [],
"dependencies": {
"@node-wot/binding-http": "1.0.0",
"@node-wot/binding-websockets": "1.0.0",
"@node-wot/core": "1.0.0"
}
}