-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "mixpanel",
"description": "A simple server-side API for mixpanel",
"keywords": [
"mixpanel",
"analytics",
"api",
"stats"
],
"version": "0.21.0",
"homepage": "https://github.com/mixpanel/mixpanel-node",
"author": "Carl Sverre",
"license": "MIT",
"main": "lib/mixpanel-node",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mixpanel/mixpanel-node.git"
},
"engines": {
"node": ">=10.0"
},
"scripts": {
"test": "vitest",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "oxlint ."
},
"types": "./lib/mixpanel-node.d.ts",
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.8",
"nock": "^14.0.10",
"oxlint": "^1.16.0",
"prettier": "^3.6.2",
"proxyquire": "^2.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"dependencies": {
"https-proxy-agent": "7.0.6",
"json-logic-js": "2.0.5"
}
}