forked from osano/cookieconsent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.28 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
{
"name": "cookieconsent",
"version": "3.1.1",
"description": "Osano cookie consent tool.",
"main": "build/cookieconsent.min.js",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"autoprefixer": "^9.6.1",
"node-sass": "^4.12.0",
"postcss-cli": "^6.1.3",
"rimraf": "^2.6.3",
"terser": "^4.1.2",
"version-bump-prompt": "^5.0.4"
},
"homepage": "http://cookieconsent.osano.com/",
"scripts": {
"clean": "rimraf ./build/**/*",
"build": "npm run clean && npm run minify:js && npm run minify:css",
"minify:js": "babel ./src/cookieconsent.js | terser -c -m --config-file ./terser.config.json > ./build/cookieconsent.min.js",
"minify:css": "node-sass ./src/styles/main.scss | postcss | node-sass --output-style compressed > ./build/cookieconsent.min.css",
"build:release": "npm run build && bump -c -t package.json package-lock.json bower.json",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/osano/cookieconsent.git"
},
"author": "Osano, Inc., a Public Benefit Corporation",
"license": "MIT"
}