-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "@dzangolab/vue-country-flag-icon",
"version": "0.3.0",
"description": "A vue.js component to display country flag icons.",
"keywords": [
"vuejs",
"country",
"flag",
"icon"
],
"homepage": "https://github.com/dzangolab/vue-country-flag-icon",
"bugs": "https://github.com/dzangolab/vue-country-flag-icon/issues",
"license": "MIT",
"author": {
"name": "Olivier Pichon",
"email": "op@dzango.com",
"url": "https://github.com/opichon"
},
"repository": "github:dzangolab/vue-country-flag-icon",
"scripts": {
"build": "vue-cli-service build --target lib --name CountryFlag ./src/components/CountryFlag/Index.vue",
"build:wc": "vue-cli-service build --target wc --name country-flag ./src/components/CountryFlag/Index.vue",
"prepublish": "yarn run lint && yarn run build",
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"release": "shipjs prepare"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"main": "./dist/CountryFlag.common.js",
"dependencies": {
"@dzangolab/flag-icon-css": "^3.4.5",
"core-js": "^3.5.0",
"vue": "3.2.26"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/compiler-sfc": "^3.0",
"@vue/eslint-config-standard": "^5.0.1",
"@vue/web-component-wrapper": "^1.2.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"shipjs": "0.26.3"
}
}