-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 918 Bytes
/
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
{
"name": "typedrest",
"version": "0.0.1",
"author": "Bastian Eicher",
"license": "MIT",
"description": "TypedRest helps you build type-safe fluent-style REST API clients.",
"keywords": [
"REST",
"client",
"type-safe"
],
"repository": {
"type": "git",
"url": "https://github.com/TypedRest/TypedRest-TypeScript.git"
},
"homepage": "https://typedrest.net",
"main": "index.js",
"types": "index.ts",
"files": [
"**/*.js",
"**/*.ts",
"!_doc.*",
"!docs/"
],
"scripts": {
"build": "tsc",
"test": "jest",
"docs": "typedoc"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/url-template": "2.0.31",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-fetch-mock": "3.0.3",
"ts-jest": "29.2.5",
"typedoc": "0.27.6",
"typescript": "5.5.4"
},
"dependencies": {
"url-template": "^2.0.8"
}
}