-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.08 KB
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
{
"author": "Evan Tahler <evantahler@gmail.com>",
"name": "actionhero-node-client",
"description": "ActionHero client for other node.js servers to use",
"version": "8.0.1",
"homepage": "https://github.com/actionhero/actionhero-node-client",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/actionhero-node-client.git"
},
"main": "dist/client.js",
"license": "Apache-2.0",
"keywords": [
"socket",
"tcp",
"actionhero",
"client",
"request"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "echo 'TODO'",
"pretest": "prettier --check __tests__ src",
"prepare": "rm -rf dist && tsc --declaration"
},
"dependencies": {
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"actionhero-socket-server": "^3.0.1",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/tmp"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}