-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "gdpr-guard",
"version": "2.4.1",
"author": "Voltra <[email protected]>",
"homepage": "https://github.com/Voltra/gdpr-guard#readme",
"bugs": {
"url": "https://github.com/Voltra/gdpr-guard/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Voltra/gdpr-guard.git"
},
"description": "Simple GDPR manager",
"main": "./dist/gdpr_guard.js",
"types": "./dist/gdpr_guard.d.ts",
"keywords": [
"gdpr",
"cookies",
"cookie",
"notice",
"banner",
"consent",
"tracking",
"rgpd"
],
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"clean": "rm -rf dist",
"predocs": "([[ -d ./docs ]] && rm -rf ./docs) || true",
"docs": "typedoc --options typedoc.config.js",
"predeploy:docs": "npm run docs",
"deploy:docs": "gh-pages -d docs"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/webpack": "^5.28.0",
"eledoc": "^0.2.1",
"gh-pages": "^4.0.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.4.0",
"typedoc": "^0.23.24",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "^4.9.4",
"webpack": "^5.59.1",
"webpack-cli": "^5.0.1"
}
}