-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
{
"name": "dwh-mixpanel",
"version": "1.2.2",
"description": "rETL from a data warehouse to mixpanel",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ak--47/dwh-mixpanel.git"
},
"keywords": [
"mixpanel",
"retl",
"etl",
"bigquery",
"athena",
"snowflake",
"salesforce",
"azure",
"gcp",
"aws"
],
"scripts": {
"dev": "nodemon --inspect --ignore ./node_modules/ --ignore ./tmp/ ./mock/scratch.js",
"cli": "node --inspect index.js",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"prune": "rm -rf ./logs/*",
"post": "npm publish"
},
"bin": {
"dwh-mixpanel": "./index.js"
},
"author": "AK",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-athena": "^3.264.0",
"@aws-sdk/client-s3": "^3.264.0",
"@google-cloud/bigquery": "^7.3.0",
"ak-tools": "^1.0.31",
"ansi-colors": "^4.1.3",
"async-iterator-to-stream": "^1.2.0",
"cli-box": "^6.0.10",
"cli-progress": "^3.11.2",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"es-main": "^1.2.0",
"google-auth-library": "^8.7.0",
"highland": "^2.13.5",
"inquirer": "^9.1.4",
"jsforce": "^1.11.0",
"knex": "^2.5.1",
"lodash": "^4.17.21",
"mixpanel-import": "^2.5.24",
"mssql": "^9.1.1",
"node-sql-parser": "^4.6.4",
"p-event": "^5.0.1",
"papaparse": "^5.3.2",
"snowflake-promise": "^4.5.0",
"soql-parser-js": "^4.7.1",
"stream-json": "^1.7.5"
},
"type": "module",
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.2.2",
"npm-watch": "^0.11.0"
}
}