-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.51 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
{
"name": "ez-consent",
"version": "1.2.2",
"description": "🍪 Minimal & vanilla JS only cookie consent banner with no dependencies.",
"main": "src/ez-consent.js",
"scripts": {
"compile": "node compile.js",
"test": "echo \"No test specified\"",
"lint-js": "eslint .",
"lint-css": "find \"./src\" -name \"*.css\" | xargs csslint --ignore=\"order-alphabetical\"",
"lint-md": "markdownlint **/*.md --ignore node_modules",
"lint-md-urls-relative": "remark . --frail --use remark-validate-links",
"lint-md-urls-external": "remark . --frail --use remark-lint-no-dead-urls",
"lint-md-consistency": "remark . --frail --use remark-preset-lint-consistent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/undergroundwires/ez-consent.git"
},
"author": "npm@erkinekici.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/undergroundwires/ez-consent/issues"
},
"homepage": "https://github.com/undergroundwires/ez-consent#readme",
"dependencies": {
"@babel/core": "^7.15.0",
"clean-css": "^5.1.5",
"google-closure-compiler": "^20200719.0.0"
},
"devDependencies": {
"babel-plugin-remove-import-export": "^1.1.1",
"csslint": "^1.0.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"markdownlint-cli": "^0.28.1",
"remark-cli": "^10.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-preset-lint-consistent": "^5.0.0",
"remark-validate-links": "^11.0.0"
}
}