-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
executable file
·87 lines (87 loc) · 2.66 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
87
{
"author": "John Datserakis <johndatserakis@gmail.com>",
"browser": {
"./sfc": "src/vue-cookie-accept-decline.vue"
},
"bugs": {
"url": "https://github.com/johndatserakis/vue-cookie-accept-decline/issues"
},
"dependencies": {
"tiny-cookie": "^2.3.2"
},
"description": "Show a banner with text, a decline button, and an accept button on your page.",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/compiler-sfc": "^3.2.31",
"@vue/test-utils": "^2.0.0-rc.18",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"minimist": "^1.2.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^3.0.2",
"rollup": "^1.15.6",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.49.9",
"vite": "^2.9.9",
"vue": "^3.2.31",
"vue-jest": "^5.0.0-alpha.10"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"keywords": [
"vue",
"gdpr",
"banner",
"accept",
"decline",
"cookie"
],
"license": "MIT",
"main": "dist/vue-cookie-accept-decline.umd.js",
"module": "dist/vue-cookie-accept-decline.esm.js",
"name": "vue-cookie-accept-decline",
"peerDependencies": {
"vue": "^3.2.31"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johndatserakis/vue-cookie-accept-decline.git"
},
"scripts": {
"build": "npm run test && npm run build:example && npm run build:library",
"build:es": "rollup --config rollup.config.js --format es --file dist/vue-cookie-accept-decline.esm.js",
"build:example": "rimraf docs && vite build",
"build:library": "rimraf dist && npm run build:umd & npm run build:es & npm run build:umd & npm run build:unpkg",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/vue-cookie-accept-decline.umd.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/vue-cookie-accept-decline.min.js",
"test": "jest",
"dev": "vite"
},
"sideEffects": false,
"unpkg": "dist/vue-cookie-accept-decline.min.js",
"version": "6.1.0"
}