1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
uBlock/platform/npm/package.json

39 lines
971 B
JSON
Raw Normal View History

{
"name": "@gorhill/ubo-core",
"version": "0.1.8",
"description": "To create a working instance of uBlock Origin's static network filtering engine",
"type": "module",
"main": "index.js",
"scripts": {
"build": "node build.js",
2021-08-15 17:13:13 +02:00
"lint": "eslint js/ *.js tests/",
2021-08-15 23:33:56 +02:00
"test": "c8 --include=index.js --include=js/**/*.js node test.js --mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gorhill/uBlock.git"
},
"keywords": [
"uBlock",
"uBO",
"adblock",
"trie"
],
"author": "Raymond Hill",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/gorhill/uBlock/issues"
},
"homepage": "https://github.com/gorhill/uBlock#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.14.4"
},
"devDependencies": {
2021-08-15 23:33:56 +02:00
"c8": "^7.8.0",
2021-08-13 19:08:13 +02:00
"eslint": "^7.32.0",
2021-08-15 14:41:30 +02:00
"esm-world": "github:mjethani/esm-world#0e5a77a5c0cb22de28616bba9ed7247dee218fb3",
2021-08-13 19:08:13 +02:00
"mocha": "^9.0.3"
}
}