-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "node-ipc-rpc",
"version": "0.1.1",
"description": "IPC and RPC service for nodes of scalable application",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"patch": "tsc && npm version patch",
"major": "tsc && npm version major",
"minor": "tsc && npm version minor",
"build": "tsc",
"test": "jest --collectCoverage"
},
"keywords": [
"ipc",
"magx",
"redis",
"node",
"cluster"
],
"author": "Damir Yusipov",
"license": "MIT",
"peerdependencies": {
"ioredis": "^4.27.8"
},
"devDependencies": {
"@types/ioredis": "^4.26.7",
"@types/jest": "^26.0.15",
"@types/node": "^16.4.3",
"ioredis": "^4.27.8",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^10.2.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}