-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.77 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
{
"name": "shadowrealm-api",
"version": "0.8.2",
"description": "ShadowRealm polyfill for browser",
"author": {
"name": "Ambit Tsai",
"email": "[email protected]"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"start": "vite -c docs-src/vite.config.ts",
"test": "test262-harness --hostType=chrome --hostPath=\"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe\" --prelude=test/helpers.js --prelude=dist/polyfill.umd.js --transformer=test/transformer.js --test262Dir=test/test262 test/cases/**/*.js",
"test:firefox": "test262-harness --hostType=firefox --hostPath=\"C:\\Program Files\\Mozilla Firefox\\firefox.exe\" --prelude=test/helpers.js --prelude=dist/polyfill.umd.js --transformer=test/transformer.js --test262Dir=test/test262 test/cases/**/*.js",
"build": "node --experimental-json-modules scripts/build.mjs",
"build:docs": "vite build -c docs-src/vite.config.ts",
"preview:docs": "vite preview -c docs-src/vite.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambit-tsai/shadowrealm-api.git"
},
"homepage": "https://github.com/ambit-tsai/shadowrealm-api#readme",
"bugs": {
"url": "https://github.com/ambit-tsai/shadowrealm-api/issues"
},
"devDependencies": {
"@rollup/plugin-typescript": "~8.3.0",
"rollup": "~2.59.0",
"rollup-plugin-terser": "~7.0.2",
"test262-harness": "~8.0.0",
"tslib": "~2.3.1",
"typescript": "~4.5.2",
"vite": "~2.7.2"
},
"keywords": [
"shadowrealm",
"shadowrealms",
"realm",
"realms",
"sandbox",
"polyfill",
"ponyfill",
"shim",
"shims"
]
}