-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "@68publishers/cookie-consent-resolver",
"author": "68publishers",
"version": "1.0.1",
"description": "Inject scripts without waiting for the cookies widget to load!",
"private": false,
"homepage": "http://www.68publishers.io/",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/68publishers/cookie-consent-resolver"
},
"keywords": [
"68publishers",
"consent",
"cookieconsent",
"cookie-consent",
"cookie-consent-resolver"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"eslint:fix": "eslint ./index.mjs ./src ./__tests__ --ext .js,.mjs --fix",
"eslint": "eslint ./index.mjs ./src ./__tests__ --ext .js,.mjs",
"build": "webpack --config webpack.config.js"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.5",
"babel-loader": "^9.1.2",
"eslint": "^8.40.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"terser-webpack-plugin": "^5.3.8",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**/*.test.mjs?(x)",
"**/?(*.)+(spec|test).mjs?(x)"
],
"moduleFileExtensions": [
"mjs",
"js"
]
},
"files": [
"src",
"index.mjs",
"dist/cookie-consent-resolver.min.js"
]
}