-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "vue-vimeo-player",
"version": "1.1.2",
"description": "Vue.js wrapper for Vimeo player",
"main": "dist/index.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bili",
"watch": "bili --watch",
"release": "standard-version -a",
"lint": "eslint src/*"
},
"files": [
"dist"
],
"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",
"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": {
"bili": "^5.0.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-vue": "^8.1.1",
"rollup-plugin-vue": "^6.0.0",
"standard-version": "^9.3.2"
},
"dependencies": {
"@vimeo/player": "^2.16.2",
"@vue/compiler-sfc": "^3.2.23",
"vue": "^3.2.23"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run build && git add -A"
}
}
}