-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "faros-destination",
"version": "0.1.22",
"private": true,
"description": "Faros Destination for Airbyte",
"keywords": [
"airbyte",
"destination",
"faros"
],
"homepage": "https://www.faros.ai",
"repository": "https://github.com/faros-ai/airbyte-connectors",
"author": "Faros AI, Inc.",
"license": "Apache-2.0",
"files": [
"lib/"
],
"engines": {
"node": ">=14.5"
},
"main": "./lib",
"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": {
"faros-airbyte-cdk": "^0.1.22",
"faros-feeds-sdk": "^0.8.30",
"jsonata": "^1.8.5",
"object-sizeof": "^1.6.1",
"verror": "^1.10.0"
},
"jest": {
"coverageDirectory": "out/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
".d.ts",
".js"
],
"testTimeout": 30000,
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
}
}
}