-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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": "airbyte-faros-destination",
"version": "0.0.1",
"description": "Faros Destination for Airbyte",
"keywords": [
"airbyte",
"destination",
"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"
},
"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": {
"analytics-node": "^6.0.0",
"axios": "^0.26.0",
"date-format": "^4.0.6",
"faros-airbyte-cdk": "0.0.1",
"faros-airbyte-common": "0.0.1",
"faros-feeds-sdk": "^1.0.1",
"fs-extra": "^10.0.0",
"git-url-parse": "^13.0.0",
"graphql": "^16.3.0",
"json-to-graphql-query": "^2.2.0",
"jsonata": "^1.8.5",
"object-sizeof": "^1.6.1",
"toposort": "^2.0.2",
"traverse": "^0.6.6",
"turndown": "^7.1.1",
"uuid": "^9.0.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": 600000,
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
}
}
}