-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.96 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
56
57
58
59
60
61
{
"name": "@jetbrains/websandbox",
"version": "1.0.12",
"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": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "4.3.10",
"compile-code-loader": "^1.0.0",
"electron": "17.0.0",
"eslint": "8.53.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "5.5.3",
"karma": "6.4.2",
"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.0",
"mocha": "10.2.0",
"sinon": "17.0.1",
"sinon-chai": "^3.7.0",
"standard-version": "^9.5.0",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2",
"webpack": "5.89.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "4.15.1"
},
"dependencies": {}
}