-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
{
"name": "ts-api-client-generator-node-fetch",
"version": "1.0.1",
"description": "'node-fetch' request adapter for ts-api-client-generator",
"repository": {
"type": "git",
"url": "https://github.com/inforion/ts-api-client-generator-node-fetch.git"
},
"scripts": {
"build": "webpack --config webpack.config.js"
},
"keywords": [
"Typescript",
"REST",
"API",
"HTTP",
"generation",
"fetch",
"node-fetch",
"adapter"
],
"main": "./dist/bundle.js",
"types": "./src/index.d.ts",
"files": [
"dist",
"src/**/*.ts"
],
"author": "Nikolay Kudryavtsev <n.kudriavtsev@inforion.ru>",
"license": "MIT",
"private": false,
"peerDependencies": {
"node-fetch": "^2.0.0",
"ts-api-client-generator": "^1.0.0"
},
"devDependencies": {
"@types/node": "14.11.2",
"@types/node-fetch": "2.5.7",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-disable": "2.0.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-sonarjs": "0.5.0",
"eslint-plugin-unicorn": "19.0.1",
"ts-api-client-generator": "^1.0.4",
"ts-loader": "8.0.4",
"typescript": "4.0.2",
"webpack": "4.44.2",
"webpack-cli": "3.3.12"
}
}