-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@sngular/openapi-nodejs-cli",
"version": "1.0.1",
"description": "Generates nodejs, typescript client and Angular client methods from an OpenApi document",
"keywords": [
"nodejs",
"typescript",
"openapi",
"angular",
"api",
"generator"
],
"license": "Mozilla Public License 2.0",
"type": "commonjs",
"main": "src/index.js",
"bin": "src/index.js",
"files": [
"src/**/*.{d.ts,d.ts.map,js,js.map,hbs}",
"LICENSE",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"clean": "rm -rf output",
"build": "tsc",
"postprepare": "npm run build",
"prestart": "npm run build",
"start": "node .",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint --ext .ts .",
"lint:prettier": "prettier --list-different \"**/*.ts\" || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"format": "npm run format:prettier && npm run format:eslint",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "prettier --write .",
"prepare": "husky install",
"release": "npx semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/sngular/openapi-nodejs-cli.git"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/prompt-cli": "^17.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/gitlab": "^9.0.0",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.0",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-html": "^7.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.0",
"ts-jest": "^29.0.2",
"typescript": ">=3.3.1 <4.8.0"
},
"dependencies": {
"axios": "^0.26.1",
"commander": "^9.0.0",
"handlebars": "^4.7.7",
"minimist": "^1.2.6",
"yaml": "^1.10.2"
},
"publishConfig": {
"access": "public"
}
}