-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "@68publishers/cookie-consent",
"version": "1.1.0",
"description": "Cookie consent wrapper based on orestbida/cookieconsent with GTM integration.",
"homepage": "http://www.68publishers.io/",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/68publishers/cookie-consent"
},
"scripts": {
"build:dev": "webpack --config webpack.config.dev.mjs --progress --profile",
"build:prod": "webpack --config webpack.config.prod.mjs --progress --profile",
"start:dev": "webpack --config webpack.config.dev.mjs --progress --profile && webpack-dev-server --config webpack.config.dev.mjs",
"eslint:fix": "eslint ./index.mjs ./src --fix",
"eslint": "eslint ./index.mjs ./src"
},
"keywords": [
"68publishers",
"consent",
"cookieconsent",
"cookie-consent"
],
"author": "68publishers",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.5.0",
"globals": "^15.6.0",
"json-minimizer-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"crypto-js": "^4.1.1",
"uuid": "^8.3.2",
"vanilla-cookieconsent": "^2.8.6"
},
"files": [
"src",
"index.mjs",
"dist/cookie-consent.min.js",
"dist/translations/*"
]
}