-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "@websitebeaver/far-fetch",
"version": "2.0.1",
"description": "Modern Fetch API wrapper for simplicity.",
"main": "./dist/far-fetch.bundle.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"build": "webpack --config ./webpack.config.js --mode production",
"prepare": "npm run build",
"test": "jest --watchAll"
},
"keywords": [
"Fetch",
"API",
"wrapper",
"request",
"Ajax",
"xhr"
],
"author": "Website Beaver",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"@release-it/keep-a-changelog": "^2.3.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-promise": "^4.2.1",
"fetch-mock-jest": "^1.3.0",
"jest": "^26.0.1",
"jsdoc-to-markdown": "^5.0.3",
"node-fetch": "^2.6.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"deepmerge": "^4.2.2"
},
"browserslist": [
"> 1%",
"not IE 11"
],
"repository": {
"type": "git",
"url": "https://github.com/websitebeaver/far-fetch"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/*"
]
}