-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.47 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
{
"name": "ez-consent",
"version": "1.3.0",
"description": "🍪 A minimal, vanilla JavaScript 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": "npx stylelint \"**/*.css\"",
"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": "git@undergroundwires.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/undergroundwires/ez-consent/issues"
},
"homepage": "https://github.com/undergroundwires/ez-consent#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"babel-plugin-remove-import-export": "^1.1.1",
"clean-css": "^5.3.3",
"esbuild": "0.24.2",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"markdownlint-cli": "^0.43.0",
"remark-cli": "^12.0.1",
"remark-lint-no-dead-urls": "^2.0.1",
"remark-preset-lint-consistent": "^6.0.0",
"remark-validate-links": "^13.0.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1"
}
}