forked from orestbida/cookieconsent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "vanilla-cookieconsent",
"version": "v2.8.9",
"description": "🍪 Simple cross-browser cookie-consent plugin written in vanilla js.",
"main": "dist/cookieconsent.js",
"files": [
"src",
"dist",
"types"
],
"types": "types/types.d.ts",
"scripts": {
"build:css": "postcss ./src/cookieconsent.css -o ./dist/cookieconsent.css",
"build:js": "terser --config-file terser.config.json ./src/cookieconsent.js -o ./dist/cookieconsent.js",
"build": "pnpm run build:js && pnpm run build:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orestbida/cookieconsent.git"
},
"keywords": [
"cookie",
"consent",
"gdpr",
"banner",
"vanilla"
],
"author": "Orest Bida",
"license": "MIT",
"bugs": {
"url": "https://github.com/orestbida/cookieconsent/issues"
},
"homepage": "https://github.com/orestbida/cookieconsent/tree/v2.8",
"devDependencies": {
"cssnano": "^5.1.15",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-custom-properties": "^13.1.4",
"terser": "^5.16.6"
}
}