-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 1.68 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
{
"name": "react-ketting",
"version": "4.0.10",
"description": "Ketting bindings for React",
"main": "dist/index.js",
"scripts": {
"test": "make test",
"prepublishOnly": "make build",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badgateway/react-ketting.git"
},
"keywords": [
"rest",
"hypermedia",
"client",
"http",
"hateoas",
"hal",
"react"
],
"author": "Evert Pot",
"license": "MIT",
"bugs": {
"url": "https://github.com/badgateway/react-ketting/issues"
},
"homepage": "https://github.com/badgateway/react-ketting#readme",
"files": [
"src/",
"dist/",
"browser/react-ketting.min.js",
"browser/react-ketting.min.js.map"
],
"types": "dist/index.d.ts",
"peerDependencies": {
"ketting": "^7.2.0",
"react": "^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^13.0.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^10.0.0",
"@types/node": "^16.11.39",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.3.4",
"chokidar": "^3.5.3",
"eslint": "^8.9.0",
"global-jsdom": "^8.4.0",
"ketting": "^7.2.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"react": "^18.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
]
},
"mocha": {
"require": [
"ts-node/register",
"global-jsdom/register"
],
"ignore": "test/test-entrypoint.ts",
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
],
"exit": true
}
}