-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ircv3",
"description": "Connect to and interact with IRC servers. IRCv3 compatible.",
"version": "0.33.0",
"main": "lib",
"types": "lib",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./es/index.mjs"
}
},
"repository": {
"type": "git",
"url": "git://github.com/d-fischer/ircv3.git"
},
"author": "Daniel Fischer <[email protected]>",
"funding": "https://github.com/sponsors/d-fischer",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"lib",
"es",
"!**/__tests__"
],
"scripts": {
"lint": "eslint --ext js,ts src",
"prettier:check": "prettier --check 'src/**'",
"prettier:fix": "prettier --write 'src/**'",
"test": "jest",
"build": "tsukuru",
"rebuild": "tsukuru --clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"devDependencies": {
"@d-fischer/eslint-config": "^6.2.4",
"@types/jest": "^29.2.5",
"eslint": "^8.31.0",
"husky": "^4.3.6",
"jest": "^29.3.1",
"jest-environment-node": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"tsukuru": "^0.8.0-pre.11",
"typescript": "~4.9.4"
},
"dependencies": {
"@d-fischer/connection": "^9.0.0",
"@d-fischer/escape-string-regexp": "^5.0.0",
"@d-fischer/logger": "^4.2.1",
"@d-fischer/shared-utils": "^3.5.0",
"@d-fischer/typed-event-emitter": "^3.3.0",
"klona": "^2.0.5",
"tslib": "^2.4.1"
}
}