-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
{
"name": "openapi-client-codegen",
"version": "0.2.0",
"description": "Node.js library that generates Typescript function chaining clients based on the OpenAPI specification.",
"main": "lib/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"lint": "eslint",
"prettier": "prettier src --write",
"clean": "rimraf dist",
"build": "yarn clean && tsc --skipLibCheck && yarn build:prod && yarn build:dev",
"build:prod": "NODE_ENV=production rollup --config --bundleConfigAsCjs",
"build:dev": "NODE_ENV=development rollup --config --bundleConfigAsCjs",
"commit": "yarn git-cz"
},
"author": "unadlib",
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/openapi-client-codegen/issues"
},
"homepage": "https://github.com/unadlib/openapi-client-codegen#readme",
"keywords": [
"openapi-client-codegen",
"openapi",
"openapi-client"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"commitizen": "^4.3.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.28.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"prettierPath": null,
"globals": {
"__DEV__": true
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}