forked from Elevista/nuxtswagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "nuxtswagger",
"version": "1.3.0",
"description": "Nuxt-TS-Swagger plugin generator CLI",
"bin": {
"nuxtswagger": "dist/index.js"
},
"scripts": {
"alpha": "npm version prerelease --preid=alpha",
"build": "tsc",
"lint": "eslint --format friendly --ext .ts,.js .",
"lint:fix": "eslint --format friendly --ext .ts,.js . --fix",
"prepare": "simple-git-hooks"
},
"keywords": [
"nuxt",
"typescript",
"swagger"
],
"files": [
"dist",
"types"
],
"author": "Elevista",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"cross-fetch": "^3.0.6",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"yargs": "^16.1.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint"
},
"eslintIgnore": [
"node_modules",
"dist",
"types",
"plugins"
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"devDependencies": {
"@nuxt/types": "^2.14.7",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/eslint-config-typescript": "^7.0.2",
"@types/lodash": "^4.14.168",
"@types/mkdirp": "^1.0.2",
"@types/node": "^14.14.7",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-nuxt": "^3.0.0",
"nuxt": "^2.2.0",
"simple-git-hooks": "^2.6.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elevista/nuxtswagger.git"
},
"bugs": {
"url": "https://github.com/Elevista/nuxtswagger/issues"
},
"homepage": "https://github.com/Elevista/nuxtswagger#readme"
}