-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.91 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.91 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
54
55
{
"name": "@node-wot/binding-http",
"version": "0.8.15",
"description": "HTTP client & server protocol binding for node-wot",
"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/binding-http",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"main": "dist/http.js",
"types": "dist/http.d.ts",
"browser": {
"./dist/http.js": "./dist/http-browser.js",
"./dist/http-client.js": "./dist/http-client-browser.js"
},
"devDependencies": {
"@node-oauth/express-oauth-server": "^3.0.1",
"@node-oauth/oauth2-server": "^4.3.0",
"@types/accept-language-parser": "^1.5.2",
"@types/basic-auth": "1.1.3",
"@types/express": "^4.17.3",
"@types/node-fetch": "^2.5.10",
"ssestream": "^1.1.0",
"timekeeper": "^2.2.0"
},
"dependencies": {
"@node-wot/core": "0.8.15",
"@node-wot/td-tools": "0.8.15",
"@types/eventsource": "1.1.10",
"accept-language-parser": "1.5.0",
"basic-auth": "2.0.1",
"client-oauth2": "^4.2.5",
"eventsource": "^2.0.2",
"find-my-way": "^7.6.2",
"node-fetch": "^2.6.7",
"query-string": "^7.1.1",
"rxjs": "5.5.11",
"slugify": "^1.4.5"
},
"scripts": {
"build": "tsc -b",
"test": "mocha --unhandled-rejections=strict --require ts-node/register --extension ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"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-http#readme"
}