forked from mickdekkers/vue-howler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.33 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vue-howler",
"version": "0.7.0",
"description": "A Howler.js mixin for Vue 2 that makes it easy to create custom audio player components",
"keywords": [
"aac",
"audio",
"mixin",
"mp3",
"ogg",
"player",
"sound",
"vue",
"wav",
"webm"
],
"homepage": "https://github.com/mickdekkers/vue-howler#readme",
"bugs": {
"url": "https://github.com/mickdekkers/vue-howler/issues"
},
"license": "MIT",
"author": {
"name": "Mick Dekkers",
"email": "mickdekkersnl@gmail.com"
},
"files": [
"dist",
"yarn.lock"
],
"main": "dist/vue-howler.common.js",
"module": "dist/vue-howler.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mickdekkers/vue-howler.git"
},
"scripts": {
"build": "node build/build.js",
"fmt": "run-p fmt:package fmt:code",
"fmt:code": "prettier --write --list-different --no-semi --single-quote \"{src,build}/**/*.{js,css}\" || true",
"fmt:package": "sort-package-json",
"format": "run-s fmt",
"release": "node ./build/publish.js",
"test": "karma start ./test/karma.config.js --singleRun",
"test:watch": "karma start ./test/karma.config.js"
},
"dependencies": {
"howler": "^2.0.5",
"math-clamp": "^1.0.0",
"object-assign": "^4.1.1",
"object-values": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"chalk": "^2.1.0",
"dedent": "^0.7.0",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"execa": "^0.8.0",
"listr": "^0.12.0",
"mz": "^2.6.0",
"npm-run-all": "^4.1.1",
"pascal-case": "^2.0.1",
"prettier": "^1.6.1",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"semver": "^5.4.1",
"sort-package-json": "^1.7.1",
"uglify-es": "^3.0.28",
"vue": "^2.4.2",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"yargs": "^8.0.2",
"zlib": "^1.0.5"
}
}