-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.07 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
{
"name": "pipeproc",
"version": "0.4.1",
"license": "BSD-3-Clause",
"author": {
"name": "Zisis Maras",
"email": "[email protected]"
},
"description": "Multi-process log processing for nodejs",
"repository": "https://github.com/zisismaras/pipeproc",
"homepage": "https://github.com/zisismaras/pipeproc",
"main": "./lib/client/index.js",
"typings": "./lib/client/index.d.ts",
"files": [
"lib"
],
"keywords": [
"log",
"structured commit log",
"kafka",
"redis stream",
"multi process"
],
"scripts": {
"test": "(tsc || echo \"compiled\") && jest --ci",
"prepublishOnly": "rm -rf ./lib && tsc --build --clean && tsc --build && rm -rf ./lib/typings && cp -r ./src/typings ./lib/typings"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFilesAfterEnv": [
"jest-extended"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"/node_modules",
"/__tests__/client/keys/"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/rimraf": "2.0.2",
"@types/semver": "6.2.0",
"eslint": "4.19.1",
"eslint-config-google": "0.9.1",
"jest": "25.5.4",
"jest-extended": "0.11.5",
"prettier": "1.14.0",
"rimraf": "2.6.2",
"semver": "6.3.0",
"ts-jest": "25.4.0",
"tslint": "5.11.0",
"tslint-eslint-rules": "5.3.1",
"tslint-microsoft-contrib": "5.1.0",
"typescript": "~3.8.3"
},
"dependencies": {
"@types/async": "3.0.3",
"@types/backoff": "2.5.1",
"@types/debug": "0.0.30",
"@types/leveldown": "4.0.2",
"@types/node": "12.12.6",
"@types/uuid": "3.4.3",
"@types/forever-monitor": "1.7.4",
"async": "3.1.0",
"backoff": "2.5.0",
"debug": "3.1.0",
"forever-monitor": "1.7.1",
"leveldown": "5.6.0",
"memdown": "5.1.0",
"uuid": "3.3.2"
}
}