-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.61 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.61 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
96
97
98
99
100
101
{
"name": "@cloudquery/cq-js-plugin-template",
"version": "1.0.0",
"description": "A CloudQuery source plugin to sync data from ...",
"keywords": [
"nodejs",
"javascript",
"CloudQuery",
"CQ",
"ETL",
"data",
"plugin",
"data extraction",
"data engineering"
],
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/tsconfig.tsbuildinfo",
"!dist/**/*.map"
],
"bin": "dist/main.js",
"directories": {
"test": "test"
},
"type": "module",
"scripts": {
"dev": "tsx src/main.ts serve",
"build": "rm -rf dist && tsc",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint --max-warnings 0 --ext .ts src",
"lint:fix": "eslint --max-warnings 0 --ext .ts --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",
"@tsconfig/node16": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/uuid": "^11.0.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"ava": "^6.4.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"jest": "^30.0.0",
"path-exists": "^5.0.0",
"prettier": "^3.0.1",
"tempy": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"winston": "^3.10.0"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@cloudquery/plugin-sdk-javascript": "^0.1.4",
"ajv": "^8.12.0",
"camelcase-keys": "^10.0.0",
"change-case": "^5.0.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"
}
},
"overrides": {
"@vercel/nft": "1.3.2"
}
}