-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "hypothesis-rest",
"version": "0.0.5",
"description": "A Typescript client for the Hypothesis REST API",
"main": "./src/HypothesisRest.ts",
"types": "dist/index.d.ts",
"files": [
"README.md",
"LICENSE",
"/dist"
],
"scripts": {
"dev:test": "vitest",
"test:integration:covered": "vitest run --coverage",
"test:integration": "vitest run",
"test:types": "tsd --typings ./dist/HypothesisRest.d.ts",
"test": "npm run test:types && npm run test:integration:covered",
"dev:docs": "npm run build:docs -- --watch",
"build:lib": "tsc",
"build:docs": "typedoc",
"validate:docs": "typedoc --validation",
"build": "npm run build:lib && npm run build:docs",
"clean": "rm -rf dist docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shawninder/hypothesis-rest.git"
},
"keywords": [
"hypothesis",
"annotation",
"api",
"http",
"rest",
"browser",
"Node.js",
"isomorphic"
],
"author": "Shawn Inder <shawninder@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/shawninder/hypothesis-rest/issues"
},
"homepage": "https://github.com/shawninder/hypothesis-rest#readme",
"devDependencies": {
"@knodes/typedoc-plugin-code-blocks": "0.23.2",
"@knodes/typedoc-plugin-pages": "0.23.2",
"@types/lodash.get": "4.4.7",
"@vitest/coverage-c8": "0.29.8",
"happy-dom": "9.1.7",
"lodash.get": "4.4.2",
"tsd": "0.28.1",
"typedoc": "0.23.28",
"typedoc-plugin-coverage": "2.0.0",
"typedoc-plugin-rename-defaults": "0.6.4",
"typedoc-plugin-replace-text": "2.1.0",
"typedoc-plugin-zod": "1.0.1",
"typescript": "5.0.3",
"vite": "4.2.1",
"vitest": "0.29.8"
},
"dependencies": {
"zod": "3.21.4"
},
"tsd": {
"directory": "examples"
}
}