This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.99 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
{
"name": "cors-anywhere-iframe",
"version": "1.2.1",
"description": "CORS Anywhere is a reverse proxy which adds CORS headers to the proxied request. Request URL is taken from the path. Optimized from IFrame usage.",
"license": "MIT",
"author": "Gusted <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Gusted/cors-anywhere-iframe.git"
},
"bugs": {
"url": "https://github.com/Gusted/cors-anywhere-iframe/issues/"
},
"main": "dist/cors-anywhere-iframe.js",
"types": "index.d.ts",
"files": [
"dist/cors-anywhere-iframe.js",
"index.d.ts"
],
"dependencies": {
"http-proxy": "1.18.1"
},
"devDependencies": {
"@sinonjs/fake-timers": "7.1.2",
"@types/http-proxy": "1.17.7",
"@types/jest": "27.0.1",
"@types/node": "16.7.10",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.30.0",
"esbuild": "0.12.24",
"eslint": "7.32.0",
"eslint-plugin-unicorn": "35.0.0",
"jest": "27.1.0",
"nock": "13.1.3",
"supertest": "6.1.6",
"typescript": "4.4.2"
},
"scripts": {
"build": "node tasks/build.js",
"code-style": "eslint --cache --fix \"src/**/*.ts\" \"tasks/**/*.js\" \"tests/**/*.ts\" \"tests/**/*.js\" \".eslintrc.js\"",
"lint": "eslint \"src/**/*.ts\" \"tasks/**/*.js\" \"tests/**/*.ts\" \"tests/**/*.js\" \".eslintrc.js\"",
"release": "node tasks/build.js --release",
"update-top-level": "node tasks/update-top-level.js",
"test": "jest --config=tests/jest.config.js",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest --config=tests/jest.config.js --runInBand --no-cache --watch",
"test:ci": "jest --config=tests/jest.config.js --runInBand",
"test:memory": "yarn run release & jest --config=tests/memory/jest.config.js --runInBand",
"test:trace-warnings": "node --trace-warnings ./node_modules/jest/bin/jest --config=tests/jest.config.js"
},
"engines": {
"node": ">=0.14.0"
}
}