-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 2.08 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
{
"name": "@verizonconnect/ngx-form-generator",
"version": "1.2.0",
"description": "Generates an Angular ReactiveForm from a Swagger or OpenAPI definition",
"main": "dist/generator-lib.js",
"repository": "github:verizonconnect/ngx-form-generator",
"bin": {
"ngx-form-generator": "dist/generator-cli.js"
},
"scripts": {
"test": "npm run build && jasmine dist/*.spec.js",
"build": "tsc --project .\\",
"lint": "eslint . --ext .ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"author": "Martin McWhorter <[email protected]> (https://github.com/martinmcwhorter)",
"license": "MIT",
"keywords": [
"angular",
"validation",
"form",
"reactive-forms",
"swagger",
"openapi",
"typescript"
],
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.0.3",
"@types/camelcase": "^4.1.0",
"@types/jasmine": "^4.3.0",
"@types/node-fetch": "^2.5.5",
"@types/prettier": "^1.19.1",
"@types/yaml": "^1.2.0",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"commitiquette": "^1.2.1",
"commitizen": "^4.2.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^6.10.1",
"husky": "^7.0.4",
"jasmine": "^4.4.0",
"lint-staged": "^13.0.3",
"openapi-types": "^7.0.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"camelcase": "^5.0.0",
"prettier": "^1.19.1",
"ts-morph": "^16.0.0",
"yaml": "^2.1.3",
"yargs": "^17.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitLint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "commitiquette"
}
}
}