forked from badgateway/ketting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.71 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
{
"name": "ketting",
"version": "5.2.1",
"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/evert/ketting.git"
},
"keywords": [
"rest",
"hypermedia",
"client",
"http",
"hateoas",
"hal"
],
"author": "Evert Pot",
"license": "MIT",
"bugs": {
"url": "https://github.com/evert/ketting/issues"
},
"homepage": "https://github.com/evert/ketting#readme",
"files": [
"src/",
"dist/",
"browser/ketting.min.js",
"browser/ketting.min.js.map"
],
"types": "dist/index.d.ts",
"dependencies": {
"fetch-mw-oauth2": "^0.4.2",
"http-link-header": "^1.0.2",
"node-fetch": "^2.6.0",
"querystring-browser": "^1.0.4",
"sax": "^1.2.4",
"uri-template": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/http-link-header": "^1.0.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-static": "^4.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^10.17.17",
"@types/node-fetch": "^2.5.5",
"@types/sax": "^1.2.1",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-path-match": "^2.0.0",
"koa-static": "^5.0.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"nyc": {
"extension": [
".ts"
]
}
}