forked from faros-ai/airbyte-connectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "faros-airbyte-cdk",
"version": "0.0.1",
"description": "Airbyte Connector Development Kit (CDK) for JavaScript/TypeScript",
"keywords": [
"airbyte",
"cdk",
"faros"
],
"homepage": "https://www.faros.ai",
"author": "Faros AI, Inc.",
"license": "Apache-2.0",
"repository": "https://github.com/faros-ai/airbyte-connectors",
"bugs": {
"url": "https://github.com/faros-ai/airbyte-connectors/issues"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/",
"resources/"
],
"main": "./lib",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p src",
"clean": "rm -rf lib node_modules out",
"fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts' && npm run lint -- --fix",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"prepare": "npm run build",
"test": "jest --verbose --color",
"test-cov": "jest --coverage --verbose --color",
"watch": "tsc -b -w src test"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"commander": "^9.3.0",
"enquirer": "^2.3.6",
"fast-redact": "^3.0.2",
"json-schema-traverse": "^1.0.0",
"lodash": "^4.17.21",
"pino": "^8.17.0",
"table": "^6.8.1",
"toposort": "^2.0.2",
"verror": "^1.10.1"
},
"jest": {
"coverageDirectory": "out/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 10000,
"transform": {
"\\.[jt]sx?$": [
"ts-jest",
{
"tsconfig": "test/tsconfig.json"
}
]
},
"snapshotFormat": {
"printBasicPrototype": true,
"escapeString": true
}
}
}