-
Notifications
You must be signed in to change notification settings - Fork 545
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.46 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.46 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@cloudquery/cq-source-airtable",
"version": "2.3.9",
"description": "A CloudQuery source plugin to sync data from Airtable",
"keywords": [
"nodejs",
"javascript",
"CloudQuery",
"CQ",
"ETL",
"data",
"plugin",
"data extraction",
"data engineering",
"Airtable"
],
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/tsconfig.tsbuildinfo",
"!dist/**/*.map"
],
"bin": "dist/main.js",
"directories": {
"test": "test"
},
"type": "module",
"scripts": {
"dev": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/main.ts",
"build": "rm -rf dist && tsc",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint --max-warnings 0 src",
"lint:fix": "eslint --max-warnings 0 --fix src",
"test": "ava --timeout=10m"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cloudquery/cloudquery.git"
},
"author": "cloudquery (https://github.com/cloudquery)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/cloudquery/cloudquery/issues"
},
"homepage": "https://github.com/cloudquery/cloudquery#readme",
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@tsconfig/node22": "^22.0.0",
"@types/yargs": "^17.0.24",
"ava": "^7.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-ava": "^16.0.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"path-exists": "^5.0.0",
"prettier": "^3.0.1",
"tempy": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.0",
"winston": "^3.10.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@cloudquery/plugin-sdk-javascript": "^0.1.6",
"airtable": "^0.12.1",
"ajv": "^8.12.0",
"camelcase-keys": "^10.0.0",
"change-case": "^5.3.0",
"dayjs": "^1.11.9",
"dot-prop": "^10.0.0",
"got": "^14.0.0",
"p-map": "^7.0.0",
"read-package-up": "^12.0.0"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
}
}