-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "@dmstr/cookie-consent",
"version": "0.4.1",
"description": "Library to address GDPR (The General Data Protection Regulation)",
"main": "dist/cookie-consent.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dmstr/cookie-consent.git"
},
"author": "germanbisurgi <gebisurgi@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"serve": "live-server --port=9001",
"test": "cd tests && docker-compose run --rm node yarn build && docker-compose up -d && docker-compose ps && docker-compose run --rm codeceptjs codeceptjs run-multiple basic:chrome --steps"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"codeceptjs": "^2.1.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"live-server": "^1.2.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"bugs": {
"url": "https://github.com/dmstr/cookie-consent/issues"
},
"homepage": "https://github.com/dmstr/cookie-consent#readme",
"keywords": [
"GDPR",
"cookie",
"consent"
]
}