-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 KB
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
{
"name": "@synapxlab/cookie-consent",
"version": "2.1.3",
"description": "Bannière cookies RGPD/CNIL en Vanilla JS. 0 dépendance. Blocage auto des scripts tiers. Logging optionnel (≥300 évts/mois). Alternative européenne à Cookiebot/Axeptio (non affiliée).",
"homepage": "https://github.com/synapxLab/cookie-consent",
"repository": {
"type": "git",
"url": "https://github.com/synapxLab/cookie-consent.git"
},
"main": "dist/cookie.js",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json"
],
"keywords": [
"cookie",
"consent",
"gdpr",
"rgpd",
"cnil",
"cmp",
"privacy",
"vanilla-js",
"no-deps",
"cookiebanner"
],
"bugs": {
"url": "https://github.com/synapxLab/cookie-consent/issues"
},
"author": {
"name": "L. Lockness",
"email": "contact@synapx.fr",
"url": "https://synapx.fr"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"test": "echo 'Tests à venir' && exit 0",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .js",
"check": "npm run lint && npm audit"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"css-loader": "^7.1.2",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"sass": "^1.92.1",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/synapxLab"
},
"dependencies": {
"@synapxlab/tracking-npm": "^2.1.4"
}
}