forked from brave-experiments/ad-block
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
{
"name": "abp-filter-parser-cpp",
"main": "./build/Release/abp-filter-parser-cpp",
"version": "1.2.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": {
"commander": "^2.9.0",
"node-gyp": "^3.4.0",
"nsp": "^2.3.0",
"pre-commit": "^1.1.2",
"s3": "^4.4.0",
"standard": "^8.4.0"
},
"scripts": {
"test": "make test",
"build": "make",
"sample": "make sample",
"perf": "make perf",
"preinstall": "npm install bloom-filter-cpp && npm install hashset-cpp",
"install": "node-gyp rebuild",
"lint": "npm run lint-cpp && npm run lint-js",
"lint-cpp": "./scripts/cpplint.py",
"lint-js": "standard",
"checks": "npm run check-security",
"check-security": "nsp check",
"data-files": "node scripts/generateDataFiles.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbondy/abp-filter-parser-cpp.git"
},
"author": "Brian R. Bondy <[email protected]> (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-cpp",
"lint-js"
]
}