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
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
41
42
43
{
"name": "abp-filter-parser-cpp",
"main": "./build/Release/abp-filter-parser-cpp",
"version": "1.1.10",
"description": "C++ Adblock Plus filter parser for lists like EasyList",
"directories": {
"test": "test"
},
"dependencies": {
"bloom-filter-cpp": "1.1.x",
"cppunitlite": "^1.0.0",
"hashset-cpp": "1.0.x",
"nan": "^2.2.1"
},
"devDependencies": {
"node-gyp": "^3.3.1",
"pre-commit": "^1.1.2",
"nsp": "^2.3.0"
},
"scripts": {
"test": "make test",
"build": "make",
"preinstall": "npm install bloom-filter-cpp && npm install hashset-cpp",
"install": "node-gyp rebuild",
"lint": "./scripts/cpplint.py",
"checks": "npm run check-security",
"check-security": "nsp check"
},
"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"
]
}