forked from technowledgy/vue-h5p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
69
70
71
72
73
74
{
"name": "vue-h5p",
"version": "0.8.0",
"description": "Vue.js Component for displaying h5p content, based on h5p-standalone",
"bugs": {
"url": "https://github.com/technowledgy/vue-h5p/issues"
},
"scripts": {
"build": "\"$npm_execpath\" run build:frame && vite build",
"build:frame": "vite build --mode frame",
"lint": "eslint --max-warnings=0 --ext .js --ext .vue .",
"pre-version": "\"$npm_execpath\" test && \"$npm_execpath\" lint && \"$npm_execpath\" run build",
"release": "release-it",
"serve": "\"$npm_execpath\" run build:frame && vite",
"test": "jest"
},
"files": [
"dist/*"
],
"dependencies": {
"toposort-class": "1.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "7.22.11",
"@babel/preset-env": "7.22.10",
"@vue/eslint-config-standard": "8.0.1",
"@vue/test-utils": "1.3.6",
"@vue/vue2-jest": "29.2.5",
"babel-jest": "29.6.4",
"core-js": "3.32.1",
"coveralls": "3.1.1",
"eslint": "8.48.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "9.17.0",
"flush-promises": "1.0.2",
"jest": "29.6.4",
"jest-environment-jsdom": "29.6.4",
"jest-fetch-mock": "3.0.3",
"jest-serializer-vue": "3.1.0",
"jest-watch-typeahead": "2.2.2",
"regenerator-runtime": "0.14.0",
"release-it": "16.1.5",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-string": "3.0.0",
"vite": "4.4.9",
"vite-plugin-vue2": "2.0.3",
"vue": "2.7.14",
"vue-template-compiler": "2.7.14"
},
"homepage": "https://github.com/technowledgy/vue-h5p#readme",
"keywords": [
"component",
"vue",
"h5p"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/technowledgy/vue-h5p.git"
},
"type": "module",
"main": "dist/cjs/vue-h5p.js",
"exports": {
".": {
"require": "dist/cjs/vue-h5p.js",
"default": "dist/es/vue-h5p.js"
}
},
"module": "dist/es/vue-h5p.js"
}