-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.42 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
{
"name": "@mozmeao/consent-banner",
"version": "1.0.0",
"description": "A cookies and analytics consent banner for Mozilla websites.",
"main": "src/index.js",
"scripts": {
"start": "webpack serve --mode=development --config webpack.demo.config.js",
"lint": "./node_modules/.bin/stylelint \"src/**/*.scss\" && npx eslint . && npm run prettier-check",
"prebuild": "npm run lint && npm test",
"build": "webpack --mode production --config webpack.package.config.js",
"prettier-check": "prettier --check .",
"prettier": "prettier --write .",
"prepublishOnly": "npm run build",
"pretest": "npm run lint && webpack --config webpack.test.config.js --mode=development",
"test": "./node_modules/jasmine-browser-runner/bin/jasmine-browser-runner runSpecs --config=tests/jasmine-browser.json && ./node_modules/jasmine-browser-runner/bin/jasmine-browser-runner runSpecs --browser=chrome --config=tests/jasmine-browser.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozmeao/consent-banner.git"
},
"keywords": [
"mozilla",
"websites",
"cookies",
"analytics",
"banner"
],
"author": "Mozilla",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozmeao/consent-banner/issues"
},
"homepage": "https://github.com/mozmeao/consent-banner#readme",
"dependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.23.9",
"@mozilla-protocol/tokens": "^5.0.5",
"@mozmeao/cookie-helper": "^1.1.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.8.1",
"sass": "^1.72.0",
"sass-loader": "^16.0.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"devDependencies": {
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"jasmine-browser-runner": "^2.4.0",
"jasmine-core": "^5.1.2",
"prettier": "^3.2.4",
"sinon": "^19.0.2",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"webpack-dev-server": "^5.0.4"
},
"browserslist": [
"defaults",
"IE 9"
]
}