-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
40 lines (40 loc) · 1021 Bytes
/
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
{
"name": "adblock-rs",
"version": "0.9.2",
"description": "Very fast, Rust-based, native implementation of ad-blocker engine for Node",
"keywords": [
"adblock",
"adblocker",
"adblocking",
"ad",
"ads",
"block",
"blocker",
"blocking",
"rust"
],
"main": "js/index.js",
"author": "Anton Lazarev <[email protected]>",
"contributors": [
"Andrius Aucinas"
],
"license": "MPL-2.0",
"homepage": "https://github.com/brave/adblock-rust#readme",
"bugs": {
"url": "https://github.com/brave/adblock-rust/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave/adblock-rust.git"
},
"dependencies": {
"cargo-cp-artifact": "^0.1"
},
"scripts": {
"build": "cd js && cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"test": "cargo test"
}
}