1
1
mirror of https://github.com/gorhill/uBlock.git synced 2025-10-05 21:32:39 +02:00
Files
uBlock/package.json

33 lines
904 B
JSON
Raw Normal View History

2025-01-09 09:33:22 -05:00
{
"name": "uBlock",
"version": "1.0.0",
"description": "npm dev tools",
2025-08-24 17:26:04 -04:00
"type": "module",
2025-01-09 09:33:22 -05:00
"scripts": {
2025-05-16 08:52:36 -04:00
"lint": "eslint --no-warn-ignored --ignore-pattern \"**/lib/\" --ignore-pattern \"**/npm/\" -- \"./src/js/*.js\" \"./src/js/**/*.js\" \"./**/*.json\" \"./platform/**/*.js\"",
2025-01-09 09:33:22 -05:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gorhill/uBlock.git"
},
"author": "Raymond Hill",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/gorhill/uBlock/issues"
},
"homepage": "https://github.com/gorhill/uBlock#readme",
"engines": {
"node": ">=22",
"npm": ">=11"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@eslint/json": "^0.13.1",
"eslint": "^9.34.0",
2025-01-09 09:33:22 -05:00
"eslint-formatter-compact": "^8.40.0",
"globals": "^15.14.0"
}
}