forked from badgateway/ketting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ketting",
"version": "8.0.0-alpha.3",
"description": "Opiniated HATEAOS / Rest client.",
"main": "dist/index.js",
"browser": "browser/ketting.min.js",
"scripts": {
"test": "make test",
"prepublishOnly": "make build",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badgateway/ketting.git"
},
"keywords": [
"rest",
"hypermedia",
"client",
"http",
"hateoas",
"hal"
],
"author": "Evert Pot",
"license": "MIT",
"bugs": {
"url": "https://github.com/badgateway/ketting/issues"
},
"homepage": "https://github.com/badgateway/ketting#readme",
"files": [
"src/",
"dist/",
"browser/ketting.min.js",
"browser/ketting.min.js.map",
"LICENSE"
],
"engines": {
"node": ">=16"
},
"types": "dist/index.d.ts",
"dependencies": {
"@badgateway/oauth2-client": "^2.0.17",
"hal-types": "^1.7.7",
"http-link-header": "^1.0.3",
"querystring-browser": "^1.0.4",
"sax": "^1.2.4",
"uri-template": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/http-link-header": "^1.0.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-static": "^4.0.1",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.14",
"@types/sax": "^1.2.1",
"chai": "^4.5.0",
"eslint": "^9.10.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-path-match": "^4.0.0",
"koa-static": "^5.0.0",
"mocha": "^10.0.0",
"nyc": "^17.1.0",
"ts-loader": "^9.1.1",
"ts-node": "^10.0.0",
"typescript": "^5.0.2",
"typescript-eslint": "^8.6.0",
"webpack": "^5.24.3",
"webpack-cli": "^5.0.1"
},
"nyc": {
"extension": [
".ts"
]
},
"mocha": {
"require": [
"ts-node/register",
"./test/testserver.ts"
],
"ignore": "test/test-entrypoint.js",
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
],
"exit": true
},
"browserslist": [
"last 2 versions",
"not ie 11",
"not op_mini all"
]
}