-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.65 KB
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
{
"name": "cherjs",
"version": "1.1.0",
"description": "Cher is a configurable fetcher based on the native fetch API.",
"source": "src/index.js",
"main": "dist/cher.cjs.js",
"browser": "dist/cher.iife.js",
"module": "dist/cher.esm.js",
"unpkg": "dist/cher.umd.min.js",
"jsdelivr": "dist/cher.umd.js",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "rm -rf dist && rollup -c -w --bundleConfigAsCjs",
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs",
"lint": "eslint ./",
"lint-dev": "esw -w --color ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Cher",
"cher",
"cherjs",
"cher.js",
"fetch",
"fetcher",
"configurable",
"API",
"AJAX",
"XMLHttpRequest",
"xhr"
],
"homepage": "https://cherjs.org/",
"author": {
"name": "Haász Sándor",
"email": "haasz@cherjs.org"
},
"funding": "https://github.com/sponsors/haasz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cherjs/cher.git"
},
"bugs": {
"url": "https://github.com/cherjs/cher/issues"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/eslint-parser": "^7.26.8",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-watch": "^8.0.0",
"rollup": "^4.34.8"
}
}