-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "@madkudu/node-mixpanel-export",
"version": "1.2.1",
"description": "A lightweight SDK for the Mixpanel export API",
"keywords": [
"mixpanel",
"api",
"export",
"data",
"analytics"
],
"homepage": "https://github.com/MadKudu/node-mixpanel-export",
"bugs": {
"url": "https://github.com/MadKudu/node-mixpanel-export/issues"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MadKudu/node-mixpanel-export.git"
},
"license": "MIT",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha test/*.spec.ts",
"lint": "eslint --fix 'lib/*.ts' 'test/*.spec.ts'",
"format:check": "prettier --check .",
"format": "prettier --write .",
"build": "tsc",
"prebuild": "shx rm -rf ./dist"
},
"dependencies": {
"axios": "^1.6.7",
"qs": "^6.11.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.2.0",
"prettier": "2.7.1",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"directories": {
"test": "test"
}
}