forked from faros-ai/airbyte-connectors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.34 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
{
"name": "statuspage-source",
"version": "0.1.85",
"description": "Statuspage Airbyte source",
"keywords": [
"airbyte",
"source",
"faros",
"statuspage"
],
"homepage": "https://www.faros.ai",
"author": "Faros AI, Inc.",
"license": "Apache-2.0",
"files": [
"lib/",
"resources/"
],
"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": {
"axios": "^0.26.0",
"commander": "^9.0.0",
"faros-airbyte-cdk": "^0.1.85",
"statuspage.io": "^3.1.0",
"typescript-memoize": "^1.1.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"
}
}
}
}