-
Notifications
You must be signed in to change notification settings - Fork 256
/
package.json
86 lines (86 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": "KIProtect GmbH",
"browserslist": [
"> 0.25%",
"IE 11",
"IE 9"
],
"bugs": {
"url": "https://github.com/KIProtect/klaro/issues"
},
"dependencies": {
"@babel/eslint-parser": "^7.23.10",
"sass": "^1.25.0",
"webpack-merge": "^5.10.0"
},
"description": "A simple but powerful consent manager.",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "7.24.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/preset-env": "7.24.0",
"@babel/preset-react": "7.23.3",
"autoprefixer": "^10.4.18",
"babel-loader": "9.1.3",
"classnames": "^2.5.1",
"core-js": "^3.36.0",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"file-loader": "^6.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.8.1",
"postcss-loader": "^8.1.1",
"preact": "^10.19.6",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-sass-guidelines": "^11.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-hot-middleware": "^2.26.1",
"yaml-loader": "^0.8.1"
},
"files": [
"*.js",
"*.css",
"*.scss",
"src/**/*.css",
"src/**/*.scss",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.jsx",
"src/**/*.tsx",
"src/**/*.yml"
],
"homepage": "https://klaro.kiprotect.com/",
"keywords": [
"cookie",
"consent",
"gdpr",
"compliance"
],
"license": "BSD-3-Clause",
"main": "dist/klaro.js",
"name": "klaro",
"repository": {
"type": "git",
"url": "git+https://github.com/kiprotect/klaro.git"
},
"scripts": {
"lint": "eslint ./src --quiet",
"lint-fix": "eslint ./src --fix",
"lint-scss": "stylelint ./src/scss/*.scss --quiet",
"lint-scss-fix": "stylelint ./src/scss/*.scss --fix",
"make": "cross-env APP_ENV=production webpack --mode production --config webpack.config.js",
"make-dev": "cross-env APP_ENV=dev webpack serve --mode development --config webpack.config.js",
"make-watch": "cross-env APP_ENV=dev webpack --mode development --watch --config webpack.config.js"
},
"version": "0.7.22"
}