-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "@dipakparmar/rspamd-client",
"version": "0.0.1-beta",
"description": "A TypeScript Node.js client interacting for Rspamd",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"files": [
"dist/src"
],
"scripts": {
"build": "tsc",
"test": "node --loader ts-node/esm --no-warnings --test tests/*.test.ts",
"lint:check": "eslint -c eslint.config.js src/**/*.ts",
"lint:fix": "eslint -c eslint.config.js src/**/*.ts --fix",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"rspamd",
"rspamd-node-js-client",
"rspamd-client",
"rspamd-typescript-client",
"spam-filter",
"email-security"
],
"author": "Dipak Parmar",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/dipakparmar/rspamd-node-client.git"
},
"bugs": {
"url": "https://github.com/dipakparmar/rspamd-node-client/issues"
},
"homepage": "https://github.com/dipakparmar/rspamd-node-client#readme",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/node": "^22.1.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}