-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "@kinandcarta/patios",
"version": "0.0.1",
"description": "Manage large Open API specifications and automatically generate TypeScript definitions from them.",
"main": "src/index.ts",
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"test": "jest",
"dev": "node-dev src/index.ts",
"dev:quick": "node-dev src/write-bin-template.ts",
"build": "tsc --project tsconfig.build.json && node bin/write-bin-template/index.js",
"format": "prettier -w .",
"lint": "eslint --ignore-path .prettierignore \"**/*.ts\"",
"lint:fix": "eslint --fix --ignore-path .prettierignore \"**/*.ts\"",
"lint:check-rule-overlap": "npx eslint-config-prettier src/index.ts",
"typecheck": "tsc --noEmit",
"validate-templates": "concurrently --kill-others-on-fail -c \"auto\" -n \"validate:\" \"npm:validate-template-*\"",
"validate-template-json": "npx swagger-cli validate ./bin/templates/json/[entryPoint].json",
"validate-template-yaml": "npx swagger-cli validate ./bin/templates/yaml/[entryPoint].yaml",
"prepare": "husky install"
},
"bin": {
"lay-patio": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theappbusiness/patios.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/theappbusiness/patios/issues"
},
"homepage": "https://github.com/theappbusiness/patios#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/prompts": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"json-to-pretty-yaml": "^1.2.2",
"lint-staged": "^13.0.3",
"node-dev": "^7.4.3",
"prettier": "^2.7.1",
"swagger-cli": "^4.0.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"prompts": "^2.4.2"
}
}