This repository has been archived by the owner on May 8, 2023. It is now read-only.
forked from dobromir-hristov/vue-vimeo-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "vue-vimeo-player",
"version": "0.0.9",
"description": "Vue.js wrapper for Vimeo player",
"main": "dist/bundle.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"watch": "rollup -c - w",
"release": "standard-version -a"
},
"keywords": [
"Vue",
"Vimeo",
"Player",
"component"
],
"bugs": {
"url": "https://github.com/dobromir-hristov/vue-vimeo-player/issues"
},
"homepage": "https://github.com/dobromir-hristov/vue-vimeo-player#readme",
"module": "dist/bundle.es.js",
"author": "Dobromir Hristov <[email protected]> (http://digital-cult.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/dobromir-hristov/vue-vimeo-player.git"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"conventional-changelog-cli": "^1.3.3",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^3.13.0",
"eslint-plugin-vue-libs": "^1.2.1",
"lodash.camelcase": "^4.3.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-watch": "^4.3.1",
"standard-version": "^4.2.0"
},
"dependencies": {
"@vimeo/player": "^2.6.3",
"object-assign": "^4.1.1"
},
"peerDependencies": {
"vue": "^2.5.17"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run build && git add -A"
}
}
}