-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "@grrr/cookie-consent",
"version": "2.0.0",
"description": "Cookie consent with accessible dialog, agnostic tag triggers and conditional content, script and embed hooks.",
"keywords": [
"cookie consent",
"cookie dialog",
"gdpr",
"google tag manager",
"gtm"
],
"main": "index.mjs",
"author": "GRRR <[email protected]>",
"homepage": "https://github.com/grrr-amsterdam/cookie-consent",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grrr-amsterdam/cookie-consent.git"
},
"dependencies": {
"@grrr/utils": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"sass": "^1.56.1"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext=.js,.mjs"
},
"jest": {
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"//node_modules/(?!.*.*/.*.mjs)/"
],
"transform": {
"^.+\\.m?js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"mjs"
]
}
}