-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "restful-proxy",
"version": "0.2.0",
"description": "A convenient RESTful HTTP client.",
"module": "index.js",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"browser": "index.js",
"main": "index.cjs",
"scripts": {
"test": "jest",
"build": "npm run build:iife && npm run build:cjs",
"build:iife": "rollup index.js -f iife --output.name restful | uglifyjs > dist/restful.min.js",
"build:cjs": "rollup index.js -f cjs | uglifyjs > dist/restful.min.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/MrThanlon/restful-proxy"
},
"homepage": "https://github.com/MrThanlon/restful-proxy",
"bugs": {
"url": "https://github.com/MrThanlon/restful-proxy/issues"
},
"keywords": [
"rest",
"restful",
"fetch"
],
"author": "MrThanlon",
"license": "MIT",
"devDependencies": {
"eslint": "^8.13.0",
"jest": "^27.0.4",
"rollup": "^2.70.1",
"uglify-js": "^3.13.9"
},
"dependencies": {
"node-fetch": "^3.2.3"
}
}