-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "openapi-typescript-fetch",
"description": "A typed fetch client for openapi-typescript",
"version": "2.0.0",
"engines": {
"node": ">= 12.0.0",
"npm": ">= 7.0.0"
},
"author": "Ajai Shankar",
"license": "MIT",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ajaishankar/openapi-typescript-fetch"
},
"keywords": [
"fetch",
"client",
"swagger",
"typescript",
"ts",
"openapi",
"openapi 3",
"node"
],
"bugs": {
"url": "https://github.com/ajaishankar/openapi-typescript-fetch/issues"
},
"homepage": "https://github.com/ajaishankar/openapi-typescript-fetch#readme",
"devDependencies": {
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.31.0",
"codecov": "^3.8.2",
"esbuild": "^0.20.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"msw": "^0.35.0",
"npm-dts": "^1.3.12",
"prettier": "^2.4.0",
"rimraf": "^3.0.0",
"ts-jest": "^27.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.4.3",
"whatwg-fetch": "^3.6.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"semi": false
},
"scripts": {
"clean": "rimraf './dist'",
"prebuild": "npm run clean",
"build": "node build.js",
"lint": "eslint .",
"prepack": "npm run test && npm run build",
"test": "npm run build && jest",
"test:codecov": "npm run build && jest --no-cache --coverage && codecov",
"test:coverage": "npm run build && jest --no-cache --collectCoverage",
"typecheck": "tsc --noEmit --project tsconfig.json"
}
}