-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.07 KB
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
67
68
69
{
"name": "consent-banner",
"version": "2.2.3",
"description": "The library which will generate a banner at the specified position for asking the cookie preferences.",
"main": "dist/consent-banner.js",
"types": "dist/consent-banner.d.ts",
"keywords": [
"cookie preferences",
"banner"
],
"homepage": "https://github.com/microsoft/consent-banner",
"author": "Microsoft",
"license": "MIT",
"files": [
"dist/consent-banner.js",
"dist/consent-banner.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/consent-banner.git"
},
"scripts": {
"prepare": "npm run build-prod",
"build": "webpack -d --mode development --config ./webpack.dev.js",
"build-prod": "webpack -p --mode production --config ./webpack.prod.js",
"start": "webpack-dev-server --open --config ./webpack.dev.js",
"test": "jest --watchAll --config ./jest.config.js",
"test-coverage": "jest --coverage --config ./jest.config.js",
"test-ci": "jest --config ./jest.config.js",
"lint": "tslint -p tsconfig.json -t stylish"
},
"dependencies": {
"style-loader": "1.1.4"
},
"devDependencies": {
"@types/babel__core": "7.1.14",
"@types/babel__generator": "7.6.2",
"@types/babel__template": "7.4.0",
"@types/babel__traverse": "7.11.1",
"@types/jest": "^25.2.3",
"@types/minimatch": "3.0.5",
"@types/node": "14.18.63",
"@types/node-sass": "^4.11.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.5.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.3.0",
"jest-junit-reporter": "^1.1.0",
"jest-pnp-resolver": "^1.2.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass": "1.32.13",
"sass-loader": "^8.0.2",
"ts-jest": "^25.3.1",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"browserslist": [
">0.2%",
"not ie <= 9",
"not dead",
"not op_mini all"
]
}