-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "arsorscookie",
"version": "0.3.5",
"description": "Arsors.Cookie has everything you expect from a Cookie Plugin. You have full control over the HTML markup and can change and expand it as you like. You can block specific JavaScript Files, iFrames and any Content you whish. Thanks to the modular system, you can also manage as many cookies as you like! The user has the freedom to accept or deny each cookie separately. You can fully customize Arsors.Cookie. It comes with three different types of privacy policies: Opt-In, Opt-Out & Info Modus.",
"main": "dist/arsors.cookie.js",
"scripts": {
"build-module": "babel src/arsors.cookie.js -o dist/arsors.cookie.js",
"build-browser": "browserify src/arsors.cookie.browser.js -o dist/arsors.cookie.min.js -t [ babelify ] -p [minifyify --no-map]",
"build-style": "sass src/arsors.cookie.scss dist/arsors.cookie.min.css --style=compressed --no-source-map",
"build": "npm run build-module && npm run build-browser && npm run build-style",
"prepare": "npm run build"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"edge": "12",
"firefox": "26",
"chrome": "33",
"safari": "9",
"ie": "9"
},
"useBuiltIns": "usage",
"corejs": "3"
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/arsors/arsorscookie.git"
},
"keywords": [
"Arsors",
"Cookie",
"Plugin",
"HTML",
"CSS",
"JavaScript",
"iFrame",
"Block",
"Modular",
"Opt-In",
"Opt-Out",
"Info",
"DSGVO",
"GDPR"
],
"author": "Marvin Schieler",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/arsors/arsorscookie/issues"
},
"homepage": "https://github.com/arsors/arsorscookie#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"minifyify": "^7.3.5",
"sass": "^1.43.4"
},
"dependencies": {
"core-js": "^3.19.1"
}
}