-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "grpc-web-rx",
"version": "0.6.12",
"homepage": "https://wisetime.com",
"main": "dist/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wisetime-io/grpc-web-rx.git"
},
"dependencies": {
"grpc-web": "^1.4.1",
"rxjs": "^7.5.7",
"typescript": "^4.4.3"
},
"devDependencies": {
"@grpc/grpc-js": "^1.3.7",
"@types/faker": "^5.5.8",
"@types/jest": "^29.5.13",
"@types/node": "22.5.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"factory.ts": "^0.5.2",
"faker": "^5.5.3",
"grpc_tools_node_protoc_ts": "^5.3.2",
"grpc-tools": "^1.11.2",
"jest": "^29.7.0",
"jsdom": "^16.7.0",
"pm2": "^5.3.0",
"rxjs-marbles": "^7.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"xhr2": "^0.2.1"
},
"overrides": {
"tough-cookie": "^4.1.3",
"semver": "^7.5.2",
"word-wrap": "^1.2.4",
"proxy-agent": "^6.3.1",
"systeminformation": "^5.21.11"
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest --no-cache",
"build": "make test-generate-proto && tsc",
"eslint": "eslint --quiet src",
"start-local-server": "pm2 start ts-node -- src/test/integration/server/server.ts",
"stop-local-server": "pm2 stop ts-node && pm2 delete ts-node"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1,
"FunctionDeclaration": {
"parameters": "first"
}
}
],
"semi": [
"error",
"never"
],
"quotes": [
"error",
"double"
],
"prefer-destructuring": 1,
"react/display-name": 0,
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "comma",
"requireLast": true
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}
],
"object-curly-spacing": [
"error",
"always",
{
"arraysInObjects": false,
"objectsInObjects": false
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}