This repository has been archived by the owner on May 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
56 lines (56 loc) · 1.61 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
53
54
55
56
{
"name": "ad-block",
"main": "./build/Release/ad-block",
"version": "4.1.7",
"description": "Ad block engine used in the Brave browser for ABP filter syntax based lists like EasyList.",
"directories": {
"test": "test"
},
"dependencies": {
"bloom-filter-cpp": "^1.2.2",
"hashset-cpp": "^2.1.1",
"nan": "^2.13.2"
},
"devDependencies": {
"commander": "^2.20.0",
"cppunitlite": "brave/CppUnitLite",
"mocha": "^6.1.4",
"node-gyp": "^4.0.0",
"pre-commit": "^1.2.2",
"s3-client": "^4.4.2",
"standard": "^12.0.1"
},
"scripts": {
"test": "npm run test-cpp && npm run test-js",
"test-cpp": "make test",
"test-js": "mocha test/js",
"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": "npm audit",
"data-files": "node scripts/generateDataFiles.js",
"manifest-files": "node scripts/generateManifestFiles.js",
"upload": "node scripts/uploadDataFiles.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave/ad-block.git"
},
"author": "Brian R. Bondy <netzen@gmail.com> (http://www.brianbondy.com)",
"license": "MPL-2.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/brave/ad-block/issues"
},
"homepage": "https://github.com/brave/ad-block#readme",
"pre-commit": [
"lint-cpp",
"lint-js"
]
}