-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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": "mixpanel-import",
"version": "2.7.049",
"description": "stream and import data to mixpanel from node.js",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"mixpanel",
"stream",
"analytics",
"tracking",
"server",
"CLI"
],
"scripts": {
"dev": "npm run prune && nodemon --inspect scratch.js --ignore ./testData --ignore ./mixpanel-exports --ignore ./logs",
"post": "npm publish",
"benchmark": "nodemon --inspect ./benchmarks/main.mjs",
"generate": "NUMEVENTS=9999 SINCEDAYS=30 node ./components/fakeData.js",
"prune": "rm -rf ./logs/* && rm -rf ./mixpanel-exports/* && rm -rf ./tmp/*",
"test": "jest --watch",
"coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --coverage && open ./tests/coverage/lcov-report/index.html",
"cli:test": "node index.js ./testData/moarEvents.json --fixData",
"cli:help": "node index.js --help",
"typecheck": "npx tsc"
},
"bin": {
"mixpanel-import": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ak--47/mixpanel-import"
},
"author": "AK",
"license": "ISC",
"bugs": {
"url": "https://github.com/ak--47/mixpanel-import/issues"
},
"homepage": "https://github.com/ak--47/mixpanel-import#readme",
"dependencies": {
"@dsnp/parquetjs": "^1.8.5",
"ak-fetch": "^1.0.83",
"ak-tools": "^1.0.6969",
"chance": "^1.1.7",
"dayjs": "^1.11.7",
"dotenv": "^10.0.0",
"got": "^11.8.6",
"highland": "^2.13.5",
"json-stable-stringify": "^1.0.2",
"md5": "^2.3.0",
"multistream": "^4.1.0",
"murmurhash": "^2.0.1",
"node-gzip": "^1.1.2",
"papaparse": "^5.3.2",
"stream-json": "^1.8.0",
"underscore": "^1.13.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/highland": "^2.12.15",
"@types/multistream": "^4.1.0",
"eslint": "^8.26.0",
"jest": "^29.3.1",
"jest-extended": "^4.0.1",
"make-mp-data": "^1.5.54",
"nodemon": "^2.0.15",
"typescript": "^5.2.2"
}
}