forked from martynsmith/node-irc
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "matrix-org-irc",
"description": "An IRC client library for node, written in Typescript.",
"version": "3.0.0",
"author": "Matrix.org (original fork from Martyn Smith <[email protected]>)",
"scripts": {
"prepare": "yarn run build",
"build": "tsc --project tsconfig.json",
"lint": "eslint -c .eslintrc --max-warnings 0 'src/**/*.ts'",
"test": "yarn test:unit # alias for the moment",
"test:unit": "jest test/*",
"test:integration": "jest spec/*"
},
"contributors": [
"node-irc contributors"
],
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/matrix-org/node-irc"
},
"bugs": {
"url": "http://github.com/matrix-org/node-irc/issues"
},
"main": "lib/index",
"engines": {
"node": ">=20.0.0"
},
"license": "GPL-3.0",
"dependencies": {
"chardet": "^2.0.0",
"iconv-lite": "^0.6.3",
"typed-emitter": "^2.1.0",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@types/node": "^20.11.28",
"@types/utf-8-validate": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}