-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "ngx-openapi-forms",
"version": "1.0.0",
"description": "Generates Angular Reactive-driven forms as multiply files from open-api YAML or JSON.",
"main": "dist/main.js",
"bin": {
"ngx-openapi-forms": "dist/bin/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"angular",
"openapi",
"forms",
"reactive forms",
"generation"
],
"homepage": "https://github.com/fiorsaoirse/ngx-openapi-forms",
"bugs": {
"url": "https://github.com/fiorsaoirse/ngx-openapi-forms/issues"
},
"scripts": {
"test": "jest",
"build": "tsc",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"lint": "npm run lint:src && npm run lint:ts",
"lint:src": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"lint:src:fix": "npm run lint:src -- --fix",
"lint:ts": "tsc --noEmit",
"lint:ts:w": "npm run lint:ts -- --watch",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"author": "Maria Kovsharova",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.3",
"@types/prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"camelcase": "^6.2.0",
"commander": "^8.1.0",
"openapi-types": "^9.1.0",
"prettier": "^2.3.2"
},
"jest": {
"modulePathIgnorePatterns": [
"node_modules"
]
}
}