-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.04 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
114
115
116
117
118
119
{
"name": "fetch-magic",
"version": "2.0.0",
"description": "This is magic 🧙️🧙️",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"exports": {
"development": {
"require": "./dist/index.cjs.development.js",
"default": "./dist/index.es.development.js"
},
"production": {
"require": "./dist/index.cjs.js",
"default": "./dist/index.es.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "run-p test:*",
"test:server": "jest",
"test:browser": "jest --env=jsdom",
"test:lint": "eslint src/",
"test:prettier": "prettier src/",
"prebuild": "rm -rf dist/",
"build": "rollup -c",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiroki0525/fetch-magic.git"
},
"keywords": [
"JavaScript",
"fetch",
"TypeScript",
"Proxy"
],
"devDependencies": {
"@commitlint/cli": "17.4.3",
"@commitlint/config-conventional": "17.4.3",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "9.0.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@size-limit/preset-small-lib": "8.2.4",
"@size-limit/time": "8.2.4",
"@types/jest": "29.4.0",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"bundlemon": "^2.0.1",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jest": "29.4.2",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "2.8.4",
"rollup": "3.15.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"semantic-release": "19.0.5",
"size-limit": "8.2.4",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"typescript": "4.9.5"
},
"author": "Hiroki Miyaji",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiroki0525/fetch-magic/issues"
},
"homepage": "https://github.com/hiroki0525/fetch-magic#readme",
"dependencies": {
"cross-fetch": "^3.1.5",
"urlcat": "^2.0.4"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git",
"@semantic-release/release-notes-generator"
],
"branches": [
"main"
]
},
"bundlemon": {
"baseDir": "./dist",
"reportOutput": [
"github"
],
"files": [
{
"path": "index.cjs.js"
},
{
"path": "index.umd.js"
},
{
"path": "index.es.js"
}
]
}
}