forked from tunapanda/h5p-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.93 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
62
63
64
65
66
67
68
{
"name": "h5p-standalone",
"version": "2.1.5",
"description": "Display H5P content as standalone frontend code, no server needed.",
"main": "dist/main.bundle.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.15.4",
"@commitlint/config-conventional": "^17.6.3",
"@types/toposort": "^2.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"commitlint": "^12.1.1",
"copy-webpack-plugin": "^8.1.1",
"cypress": "^7.1.0",
"exports-loader": "^2.0.0",
"husky": "^6.0.0",
"toposort": "^2.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"unzipper": "^0.10.11",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.8.0"
},
"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"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"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",
"dependencies": {
"@commitlint/cli": "^17.6.3"
}
}