forked from tunapanda/h5p-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "h5p-standalone",
"version": "2.1.3",
"description": "Display H5P content as standalone frontend code, no server needed.",
"main": "dist/main.bundle.js",
"dependencies": {
"@babel/runtime": "^7.6.3",
"jquery": "~3.4.1",
"toposort-class": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"copy-webpack-plugin": "^5.0.4",
"cypress": "^3.6.0",
"exports-loader": "^0.7.0",
"imports-loader": "^0.8.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"scripts": {
"watch": "webpack --watch --config webpack.dev.js",
"start": "webpack-dev-server --mode development --config webpack.dev.js",
"build:dev": "webpack --mode development --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "cypress run",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tunapanda/h5p-standalone.git"
},
"keywords": [
"h5p"
],
"author": "Jake Lee Kennedy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tunapanda/h5p-standalone/issues"
},
"homepage": "https://github.com/tunapanda/h5p-standalone#readme"
}