This repository was archived by the owner on May 8, 2025. It is now read-only.
forked from SpringRoll/SpringRollContainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "springroll-container",
"version": "4.0.1",
"description": "The iframe controller for interacting with SpringRoll applications",
"main": "./dist/index.js",
"license": "MIT",
"typings": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pbs/SpringRollContainer"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.2.1",
"chai": "^4.5.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"karma": "^6.4.4",
"karma-babel-preprocessor": "^8.0.2",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^2.1.3",
"karma-html": "^1.0.5",
"karma-mocha": "^2.0.1",
"karma-requirejs": "^1.1.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-webpack": "^5.0.1",
"mocha": "^10.8.2",
"platform": "^1.3.5",
"requirejs": "^2.3.7",
"rollup": "^4.30.1",
"sinon": "^19.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bellhop-iframe": "^3.6.0",
"core-js": "^3.40.0",
"http-proxy": "^1.18.1",
"webpack": "^5.97.1",
"whatwg-fetch": "^3.6.20"
},
"keywords": [
"deployment",
"game",
"springroll",
"iframe",
"runtime"
],
"scripts": {
"build": "rollup -c -m",
"build:e2e": "rollup -c --e2e",
"dev": "rollup -c -w",
"test": "karma start karma.conf.js",
"test:e2e": "npm run build:e2e && karma start karma.conf.e2e.js",
"test:bs": "karma start karma.conf.bs.js",
"github-test": "./node_modules/.bin/karma start --single-run --browsers ChromeHeadless"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/pbs/SpringRollContainer/issues"
},
"homepage": "https://github.com/pbs/SpringRollContainer"
}