-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.05 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
{
"name": "@curveball/browser",
"version": "1.1.1",
"description": "Automatic API browser generator. A middleware that turns your JSON responses into HTML if accessed by a browser.",
"type": "module",
"exports": "./dist/index.js",
"homepage": "https://github.com/curveball/browser#readme",
"bugs": {
"url": "https://github.com/curveball/browser"
},
"keywords": [
"hal",
"hateoas",
"http",
"framework",
"nodejs",
"typescript",
"push",
"http2"
],
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"scripts": {
"prepublishOnly": "make build",
"test": "make test",
"lint": "make lint",
"fix": "make fix",
"tsc": "tsc",
"start": "make start",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/browser"
},
"dependencies": {
"@curveball/static": "^1",
"csv-parse": "^5.1.0",
"highlight.js": "^11.2.0",
"ketting": "^7.5.1",
"markdown-it": "^14.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"peerDependencies": {
"@curveball/kernel": "^1"
},
"devDependencies": {
"@curveball/kernel": "^1.0.0",
"@curveball/validator": "^1",
"@types/chai": "^4.3.11",
"@types/markdown-it": "^13.0.7",
"@types/mocha": "^10.0.1",
"@types/node": "^18.19.7",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^5.0.0",
"eslint": "^8.23.0",
"html-form-enhancer": "^0.1.9",
"jsdom": "^23.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 18"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE",
"src",
"assets",
"data"
],
"mocha": {
"loader": [
"ts-node/esm"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
},
"nyc": {
"extension": [
".ts"
]
}
}