-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "@appzmonster/fetch-interceptor",
"version": "1.0.6",
"description": "Fetch-interceptor is a JavaScript library to enable request interceptor feature on Fetch API. The library extends Fetch API and uses fluent API design to allow chaining of one or multiple request interceptors to a Fetch API request.",
"main": "./index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist && cp ./package.json dist && cp ./README.md dist && cp ./LICENSE dist && cp ./CHANGELOG.md dist",
"build": "npm run prebuild && babel ./src -d dist --copy-files",
"publish:npm": "npm run build && cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appzmonster/fetch-interceptor.git"
},
"keywords": [
"fetch",
"fetch api",
"api",
"js",
"javascript",
"xhr",
"intercept",
"interceptor",
"request",
"fluent",
"mock",
"delegating handler",
"outgoing request"
],
"author": "Jimmy Leong (Github: appzmonster)",
"license": "MIT",
"bugs": {
"url": "https://github.com/appzmonster/fetch-interceptor/issues"
},
"homepage": "https://github.com/appzmonster/fetch-interceptor#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}