-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "terrar",
"version": "0.0.1",
"author": "Lila Rest",
"description": "An efficient and permeable alternative to iframes",
"repository": {
"type": "git",
"url": "https://github.com/LilaRest/terrar"
},
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"keywords": [
"iframe alternative",
"isolation",
"encapsulation",
"confinement",
"compartment",
"SES",
"ShadowDOM",
"third-party code",
"secure execution",
"jail"
],
"type": "module",
"dependencies": {
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"ses": "^0.18.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/escodegen": "^0.0.7",
"@types/esprima": "^4.0.3",
"@types/estraverse": "^5.1.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.7",
"jest": "^29.5.0",
"rollup": "^3.20.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
}
}