This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.13 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
{
"name": "eaxios",
"version": "1.0.1",
"description": "Axios wrapper with user friendly error",
"repository": {
"type": "git",
"url": "https://github.com/zhbhun/eaxios"
},
"keywords": [
"xhr",
"http",
"ajax",
"promise",
"node"
],
"author": "zhbhun",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhbhun/eaxios/issues"
},
"homepage": "https://github.com/zhbhun/eaxios",
"engines": {
"node": ">= 10"
},
"main": "index.js",
"files": [
"dist",
"lib",
"index.d.ts",
"index.js",
"errors.svg"
],
"scripts": {
"clean": "rimraf dist coverage lib tmp",
"demo": "node test/server.js",
"bundle": "npm run build && rimraf dist && webpack",
"build": "rimraf lib && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "~25.2.1",
"@types/node": "~12.12.38",
"@typescript-eslint/eslint-plugin": "~2.32.0",
"@typescript-eslint/parser": "~2.32.0",
"eslint": "~7.0.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.10.0",
"express": "^4.17.1",
"jest": "~25.2.7",
"prettier": "~2.0.5",
"puppeteer": "^3.0.4",
"rimraf": "~3.0.2",
"semantic-release": "^17.3.9",
"serve": "^11.3.2",
"ts-jest": "~25.5.1",
"tsutils": "~3.17.0",
"typescript": "~3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
]
}
]
]
}
}