-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.96 KB
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
56
57
58
59
60
61
62
{
"name": "@jetbrains/websandbox",
"version": "1.1.3",
"description": "A sandbox library for runnung javascript inside HTML5 sandboxed iframe",
"main": "dist/websandbox.js",
"scripts": {
"build": "rm -rf dist && webpack --bail --mode production --devtool source-map && npm run generate-declarations",
"generate-declarations": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"lint": "eslint lib test",
"test": "karma start",
"build-examples": "webpack --bail --config webpack-examples.config.js --devtool source-map",
"predeploy-examples": "npm run build-examples",
"deploy-examples": "node scripts/publish.js",
"start": "webpack-dev-server --config webpack-examples.config.js --devtool inline-source-map --port 9544 --progress",
"prerelease:ci": "npm run lint && npm run build",
"release:ci": "standard-version && git push --follow-tags origin master && npm publish"
},
"keywords": [
"sandbox",
"web",
"untrusted",
"widget",
"security",
"restricted"
],
"files": [
"dist",
"lib"
],
"author": "Andrey Skladchikov",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.39.3",
"ajv": "^8.18.0",
"chai": "4.5.0",
"compile-code-loader": "^1.0.0",
"electron": "40.6.0",
"eslint": "^9.39.3",
"gh-pages": "^6.3.0",
"globals": "^17.3.0",
"html-webpack-plugin": "5.6.6",
"karma": "6.4.4",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.2.0",
"karma-electron-launcher": "0.3.0",
"karma-mocha": "2.0.1",
"karma-sinon": "1.0.5",
"karma-sinon-chai": "2.0.2",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"mocha": "11.7.5",
"sinon": "21.0.1",
"sinon-chai": "^3.7.0",
"standard-version": "^9.5.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"webpack": "5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "5.2.3"
}
}