-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
72 lines (72 loc) · 2.16 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
{
"private": false,
"name": "@growthbunker/vueflags",
"version": "0.1.14",
"author": "Julien Le Coupanec <[email protected]>",
"license": "MIT",
"description": "One easy-to-use flag component for Vue.js with all ISO 3166-1 countries.",
"keywords": [
"vue",
"components",
"flag",
"flags"
],
"homepage": "https://www.growthbunker.dev/vueflags",
"repository": {
"type": "git",
"url": "https://github.com/growthbunker/vueflags.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/growthbunker/vueflags/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm-bundler.js",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"flags/*"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config rollup.config.js --format iife",
"lint": "npm run lint:es;",
"lint:es": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"vue-demi": "0.7.4"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-beta.1",
"vue": "^2.0.0 || >=3.0.0-rc.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"cross-env": "7.0.3",
"eslint-plugin-vue": "^7.8.0",
"husky": "7.0.4",
"pascalcase": "^1.0.0",
"postcss": "^8.2.9",
"rollup": "2.44.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3",
"vue": "^3.0.5"
}
}