forked from osano/cookieconsent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.17 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
{
"name": "cookieconsent",
"version": "4.0.0",
"description": "Osano cookie consent tool.",
"main": "build/cookieconsent.min.js",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-cli": "^6.1.3",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.0",
"sass-loader": "^7.3.1",
"string-replace-loader": "^2.2.0",
"style-loader": "^1.0.0",
"version-bump-prompt": "^6.0.3",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.8",
"webpack-merge": "^4.2.2"
},
"homepage": "http://cookieconsent.osano.com/",
"scripts": {
"clean": "rimraf ./build/**/*",
"build:dev": "npx webpack --config webpack.dev.js",
"build": "npm run clean && npx webpack -p --optimize-minimize --config webpack.prod.js",
"build:release": "npm run build && bump -c -t package.json package-lock.json bower.json",
"test": "jest ./src --verbose --coverage && rm -rf coverage/"
},
"repository": {
"type": "git",
"url": "https://github.com/osano/cookieconsent.git"
},
"author": "Osano, Inc., a Public Benefit Corporation",
"license": "MIT",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/src/__mocks__/styleMock.js"
},
"setupFiles": [
"<rootDir>/src/__mocks__/client.js"
]
}
}