forked from ScottLogic/openapi-forge-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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-forge-typescript",
"version": "0.1.0",
"description": "",
"scripts": {
"prepare": "husky install",
"test": "\"./node_modules/.bin/cucumber-js\" -p default",
"test:defaultPath": "\"./node_modules/.bin/cucumber-js\" -p default \"node_modules/openapi-forge/features/*.feature\" \"openapi-forge/src/generate\"",
"format:check:all": "prettier --check .",
"format:write:all": "prettier --write .",
"format:write": "prettier --write",
"lint:check:all": "eslint .",
"lint:write:all": "eslint --fix ."
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/chai": "^4.1.7",
"@types/chai-spies": "^1.0.3",
"@types/cucumber": "^4.0.5",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"cucumber": "^5.1.0",
"cucumber-pretty": "^1.5.0",
"cucumber-tsflow": "^3.2.0",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"openapi-forge": "github:ColinEberhardt/openapi-forge#1cd7b107fca832e286c40f9e8ec1e483e368b624",
"semantic-release": "^19.0.5",
"ts-node": "^8.0.3",
"typescript": "^4.7.4"
},
"dependencies": {
"prettier": "^2.7.1"
},
"engines": {
"node": ">=16.0.0"
}
}