-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.34 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
83
84
85
86
{
"name": "apidoc2ts",
"version": "0.3.4",
"description": "Typescript interface generator based on ApiDoc",
"bin": {
"apidoc2ts": "./bin/run"
},
"scripts": {
"start": "npm run lint && npm test && npm run build",
"monitor": "jest --watchAll --verbose",
"build": "tsc",
"test": "jest --verbose --passWithNoTests",
"lint": "eslint -c .eslintrc.js --cache 'src/**/*.ts'",
"lint:fix": "eslint -c .eslintrc.js --fix 'src/**/*.ts'",
"lint:strict": "eslint -c .eslintrc.js 'src/**/*.ts'",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf dist && npm run build && oclif-dev manifest"
},
"jest": {
"preset": "ts-jest//presets/default",
"testRegex": "(\\.(test|spec))\\.ts$"
},
"husky": {
"hooks": {
"pre-commit": "node .git-scripts/check-branch-name.js && npm run lint:strict && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluix/apidoc2ts.git"
},
"author": {
"name": "Artem Velkov",
"email": "velkov.artem@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fluix/apidoc2ts/issues"
},
"homepage": "https://fluix.github.io/apidoc2ts/",
"files": [
"/bin",
"/dist",
"oclif.manifest.json"
],
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.2",
"@types/lodash": "^4.14.138",
"chalk": "^2.4.2",
"lodash": "^4.17.14",
"make-dir": "^3.0.0",
"quicktype-core": "^6.0.44",
"tslib": "^1.10.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-legacy": "^1.1.4",
"@oclif/tslint": "^3.1.1",
"@types/jest": "^24.0.15",
"@types/node": "^10.14.13",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/eslint-plugin-tslint": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.20.0",
"typescript": "^3.5.3"
},
"keywords": [
"apidoc2ts",
"apidoc",
"interface",
"interface generator",
"code generator"
]
}