-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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": "",
"apiTemplates": [
"api.ts.handlebars"
],
"scripts": {
"prepare": "husky install",
"test": "cucumber-js -p default",
"test:generators": "cucumber-js -p generators",
"format:check:all": "prettier --check .",
"format:write:all": "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",
"@cucumber/cucumber": "^8.9.0",
"@cucumber/messages": "^20.0.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",
"cucumber-tsflow": "^4.0.0-rc.7",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"semantic-release": "^19.0.5",
"ts-node": "^8.0.3",
"typescript": "^4.7.4"
},
"dependencies": {
"prettier": "^2.7.1"
},
"engines": {
"node": ">=16.0.0"
}
}