forked from grrr-amsterdam/cookie-consent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@brackets/cookie-consent-dialog",
"version": "1.0.7",
"description": "Cookie consent dialog",
"main": "./src/js/index.js",
"scripts": {
"css": "sass --no-source-map --style=compressed src/scss/index.scss dist/index.min.css && postcss dist/index.min.css --replace --use autoprefixer",
"js": "webpack --mode production",
"build": "npm run js && npm run css"
},
"keywords": [
"brackets",
"cookie consent",
"cookie dialog"
],
"author": "Brackets",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BRACKETS-by-TRIAD/cookie-consent-dialog"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"sass": "^1.30.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.12.5",
"autoprefixer": "^10.1.0",
"core-js": "^3.8.1"
}
}