-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
113 lines (113 loc) · 3.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "kuroco-sdk",
"version": "0.1.28",
"description": "NodeJS library that generates Typescript or Javascript clients based on the OpenAPI specification.",
"author": "Yusei Abe",
"homepage": "https://github.com/diverta/kuroco-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/diverta/kuroco-sdk.git"
},
"bugs": {
"url": "https://github.com/diverta/kuroco-sdk/issues"
},
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"codegen",
"generator",
"client",
"typescript",
"javascript",
"json",
"fetch",
"node"
],
"maintainers": [
{
"name": "Yusei Abe",
"email": "yabe@diverta.co.jp"
}
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"kuroco": "bin/index.js"
},
"files": [
"tsconfig.json",
"bin/**/*.js",
"bin/**/*.json",
"dist/**/*.json",
"dist/**/*.js",
"dist/**/*.d.ts",
"src/generator/templates/**/*.hbs",
"src/generator/templates/**/*.ts",
"example/openapi.json"
],
"scripts": {
"prepublish": "npm run build && npm run prettier:fix && npm run test",
"clean": "rimraf ./dist ./test/result ./coverage",
"build": "tsc",
"run": "tsc && node ./test/index.js",
"test": "tsc && jest",
"test:update": "tsc && jest --updateSnapshot",
"test:watch": "tsc && jest --watch",
"test:coverage": "tsc && jest --coverage",
"eslint": "eslint \"./src/**/*.ts\"",
"eslint:fix": "eslint \"./src/**/*.ts\" --fix",
"prettier": "prettier \"./src/**/*.ts\" --check",
"prettier:fix": "prettier \"./src/**/*.ts\" --write"
},
"dependencies": {
"@jmurp7385/declaration-bundler-webpack-plugin": "^1.0.1",
"@vimeo/player": "^2.16.1",
"base64url": "^3.0.1",
"camelcase": "5.3.1",
"chokidar": "^3.5.2",
"commander": "5.1.0",
"firebase": "^8.10.0",
"fs-extra": "^9.0.1",
"glob-parent": "^5.1.2",
"global-npm": "^0.4.1",
"handlebars": "^4.7.7",
"mkdirp": "1.0.4",
"node-fetch": "^3.1.1",
"node-notifier": "^10.0.0",
"path": "0.12.7",
"rimraf": "3.0.2",
"set-value": "^4.1.0",
"swagger-parser": "^9.0.1",
"ts-loader": "^9.4.2",
"typescript": "3.8.3",
"watchpack": "^2.2.0",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@types/fs-extra": "^8.1.2",
"@types/jest": "25.2.1",
"@types/mkdirp": "1.0.0",
"@types/node": "13.13.4",
"@types/node-fetch": "^2.5.12",
"@types/rimraf": "3.0.0",
"@types/swagger-parser": "^7.0.1",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"codecov": "^3.8.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-simple-import-sort": "5.0.3",
"gh-pages": "^3.2.3",
"glob": "7.1.6",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"prettier": "2.0.5"
}
}