-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.55 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
{
"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": ">=16"
},
"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": {
"commander": "^9.3.0",
"fast-redact": "^3.0.2",
"json-schema-traverse": "^1.0.0",
"lodash": "^4.17.21",
"pino": "^8.5.0",
"verror": "^1.10.1"
},
"jest": {
"coverageDirectory": "out/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
".d.ts",
".js"
],
"testTimeout": 10000,
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
}
}
}