-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "openapi-tsrf",
"version": "0.0.0",
"description": "Generates request factories for all discovered operations in an open api 3 document",
"repository": "https://github.com/tristanmenzel/openapi-tsrf.git",
"scripts": {
"check-types": "tsc -p tsconfig.cli.json --noEmit && tsc -p tsconfig.runtime.json --noEmit",
"build": "run-s build:*",
"build:0-clean": "rimraf dist",
"build:1-build-cli": "tsc -p tsconfig.cli.json",
"build:2-build-runtime": "tsc -p tsconfig.runtime.json",
"build:3-copy-pkg-json": "node ./scripts/copy-package-json.js",
"build:4-copy-bin": "copyfiles bin/* dist/cli -f",
"lint": "eslint ./src/ --ext .ts",
"lint:fix": "eslint ./src/ --ext .ts --fix",
"test": "jest",
"test:ci": "TEST_ENV=ci jest"
},
"author": "Tristan Menzel",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"copyfiles": "^2.4.1",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/node": "^18.16.2",
"change-case": "^4.1.2",
"commander": "^10.0.1",
"esm": "^3.2.25",
"js-yaml": "^4.1.0"
}
}