This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.25 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
{
"name": "@vodyani/request-adapter",
"license": "MIT",
"version": "0.0.4",
"author": "ChoGathK",
"description": "request-adapter",
"homepage": "https://github.com/vodyani/request-adapter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vodyani/request-adapter.git"
},
"keywords": [
"vodyani",
"nodejs",
"axios",
"request",
"http",
"javascript",
"typescript",
"npm-package"
],
"bugs": {
"url": "https://github.com/vodyani/request-adapter/issues"
},
"files": [
"package.json",
"README.MD",
"LICENSE",
"dist"
],
"main": "dist/index.js",
"scripts": {
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"install:all": "npm i && npm i @vodyani/eslint-config -D && npx husky install",
"build": "rm -rf dist && tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint ./src && tsc",
"lint:fix": "eslint --fix --ext .ts src/ test/",
"lint:html-report": "eslint ./src ./test -f html -o eslint-report.html",
"lint:json-report": "eslint ./src ./test -f json -o eslint-report.json"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@vodyani"
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/test/.spec.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"./node_modules/(?!(lodash-es|other-es-lib))"
]
},
"dependencies": {
"@vodyani/core": "^0.3.7",
"agentkeepalive": "^4.2.1",
"axios": "^0.26.1",
"form-data": "^4.0.0"
},
"peerDependencies": {
"agentkeepalive": "^4.2.1",
"axios": "^0.26.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/supertest": "2.0.11",
"@vodyani/eslint-config": "^1.0.9",
"husky": "7.0.4",
"jest": "27.5.1",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"typescript": "4.6.3"
}
}