-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.51 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
{
"name": "pbts-grpc-transcoder",
"version": "0.3.1",
"homepage": "https://wisetime.com",
"repository": {
"type": "git",
"url": "https://github.com/wisetime-io/pbts-grpc-transcoder.git"
},
"main": "executor/index.js",
"license": "Apache-2.0",
"dependencies": {
"@types/node": "^18.16.0",
"@types/ramda": "^0.28.7",
"fp-ts": "^2.11.9",
"immer": "^9.0.12",
"node-fetch": "^2.6.7",
"protobufjs": "^6.11.4",
"ramda": "^0.28.0",
"retry-ts": "^0.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"devDependencies": {
"@faker-js/faker": "^6.1.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-core": "^7.0.0-bridge.0",
"es6-promise": "^4.2.8",
"eslint": "^7.32.0",
"factory.ts": "^1.1.0",
"jest": "27.5.1",
"rxjs-marbles": "^7.0.1",
"ts-jest": "^27.1.4"
},
"overrides": {
"word-wrap": "^1.2.4",
"semver": "^7.5.2",
"tough-cookie": "^4.1.3",
"@babel/traverse": "^7.23.2"
},
"files": [
"executor/",
"http-transcoder/",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"pretest": "cd src/http-transcoder/tests; make protobuf",
"test": "jest --no-cache",
"build": "tsc --module commonjs",
"eslint": "eslint --quiet src/executor/* src/http-transcoder/*.ts"
},
"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,
"@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"
]
}
}