-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
39 lines (39 loc) · 1.27 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
{
"name": "cookieconsent",
"version": "1.5.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --config=webpack.dev.js",
"build": "npm run build:nomin && npm run build:min && npm run build:docsSrc && npm run build:docs",
"build:nomin": "webpack --env production",
"build:min": "webpack --env production --env min",
"build:docsSrc": "webpack --env production --env min --env docs-src",
"build:docs": "webpack --env production --env min --env docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brainsum/cookieconsent.git"
},
"keywords": [],
"author": "Brainsum",
"license": "ISC",
"bugs": {
"url": "https://github.com/brainsum/cookieconsent/issues"
},
"homepage": "https://github.com/brainsum/cookieconsent#readme",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"babel-preset-minify": "^0.5.1",
"core-js": "^3.21.1",
"html-webpack-plugin": "^5.5.0",
"redom": "^3.18.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}