-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "node-iframe",
"version": "1.10.0",
"description": "create iframes on your server to bypass CORS. Reverse engineer security issues.",
"main": "dist/iframe.js",
"scripts": {
"test": "jest",
"prepare": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a11ywatch/node-iframe.git"
},
"keywords": [
"node-iframe",
"node-iframe-hack",
"iframe",
"domain-front"
],
"author": "Jeff Mendez <[email protected]>",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"follow-redirects": "^1.15.5"
},
"devDependencies": {
"@swc/core": "^1.2.205",
"@swc/jest": "^0.2.21",
"@types/cheerio": "^0.22.31",
"express": "^4.18.1",
"jest": "^26.6.3",
"tscpaths": "0.0.9",
"typescript": "4.7.4"
},
"jest": {
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
}
}
}