-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "spamreaper",
"description": "PoC of BWT-RLE based sentence complexity score. Specifically made for handling multiple chats in live streams.",
"version": "0.1.2",
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io/)",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"format": "pretty-quick --staged",
"install": "npm run build",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "cargo test && jest"
},
"types": "./index.d.ts",
"main": "./index.js",
"files": [
"src",
"Cargo.lock",
"Cargo.toml",
"index.js"
],
"dependencies": {
"cargo-cp-artifact": "^0.1.5"
},
"devDependencies": {
"husky": "^7.0.2",
"jest": "^27.2.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"homepage": "https://github.com/holodata/spamreaper",
"repository": {
"type": "git",
"url": "https://github.com/holodata/spamreaper.git"
},
"bugs": {
"url": "https://github.com/holodata/spamreaper/issues"
},
"license": "Apache-2.0",
"keywords": [
"antispam",
"spam"
],
"engines": {
"node": ">= 12.18.3"
}
}