-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "cookie-consent-tools",
"version": "0.1.6",
"description": "Set of tools to help implement user cookie consent",
"main": "dist/cookie-consent-tools.min.js",
"scripts": {
"build": "webpack --env mode=production",
"dev": "webpack --watch --devtool eval --env mode=development",
"demo:start": "ws",
"lint:js": "eslint src tests",
"lint:scss": "stylelint src/**/*.scss",
"test": "jest --coverage",
"test:all": "npm run lint:scss && npm run lint:js && npm test",
"coveralls": "coveralls < coverage/lcov.info"
},
"keywords": [
"cookie",
"consent",
"gdpr"
],
"author": "Romain Mouillard",
"license": "MIT",
"dependencies": {
"js-cookie": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.0.1",
"babel-loader": "^9.1.0",
"coveralls": "^3.1.0",
"css-loader": "^6.4.0",
"cssnano": "^6.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.3",
"mini-css-extract-plugin": "^2.4.2",
"postcss": "^8.2.5",
"postcss-loader": "^7.0.0",
"precss": "^4.0.0",
"prettier": "^2.1.1",
"stylelint": "^13.3.2",
"stylelint-config-standard": "^22.0.0",
"webpack": "^5.58.2",
"webpack-cli": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Wharenn/cookie-consent-tools.git"
},
"bugs": {
"url": "https://github.com/Wharenn/cookie-consent-tools/issues"
},
"homepage": "https://github.com/Wharenn/cookie-consent-tools#readme"
}