-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "@0y0/reaxios",
"version": "1.1.0",
"description": "Easy-to-use HTTP client based on axios for the browser and NodeJS.",
"src": "src/index.js",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"iife": "dist/index.min.js",
"repository": "https://github.com/o0y0o/reaxios",
"author": "Jason Chung",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"axios",
"fetch",
"http",
"https",
"http-client",
"http-request",
"network",
"request",
"web",
"browser",
"nodejs"
],
"scripts": {
"format": "prettier --write '{*,src/**/*}.js'",
"lint": "eslint '{*,src/**/*}.js'",
"test": "jest",
"build": "rollup -c --bundleConfigAsCjs",
"pkg": "[ $(yarn info $npm_package_name version) != $npm_package_version ] && yarn publish || echo Skip publishing due to v$npm_package_version exist"
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"axios": "^1.2.6"
},
"devDependencies": {
"@0y0/babel-preset-vanilla": "^1.1.6",
"@0y0/eslint-config-vanilla": "^1.4.0",
"@rollup/plugin-babel": "^6.0.3",
"babel-jest": "^29.5.0",
"eslint": "^8.46.0",
"jest": "^29.5.0",
"jest-mock-axios": "^4.6.2",
"prettier": "^2.8.8",
"rollup": "^3.27.2",
"rollup-plugin-terser": "^7.0.2"
}
}