forked from brave-experiments/ad-block
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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
{
"name": "abp-filter-parser-cpp",
"main": "./build/Release/abp-filter-parser-cpp",
"version": "1.1.5",
"description": "C++ Adblock Plus filter parser for lists like EasyList",
"directories": {
"test": "test"
},
"dependencies": {
"bloom-filter-cpp": "^1.0.19",
"cppunitlite": "^1.0.0",
"hashset-cpp": "^1.0.13",
"nan": "^2.1.0"
},
"devDependencies": {
"node-gyp": "^3.2.1",
"pre-commit": "^1.1.2"
},
"scripts": {
"test": "make test",
"build": "make",
"preinstall": "npm install bloom-filter-cpp && npm install hashset-cpp",
"install": "node-gyp rebuild",
"lint": "./scripts/cpplint.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbondy/abp-filter-parser-cpp.git"
},
"author": "Brian R. Bondy <netzen@gmail.com> (http://www.brianbondy.com)",
"license": "MPL-2.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/bbondy/abp-filter-parser-cpp/issues"
},
"homepage": "https://github.com/bbondy/abp-filter-parser-cpp#readme",
"pre-commit": [
"lint"
]
}