forked from michaelcarter/mixpanel-data-export-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "mixpanel-data-export-node",
"version": "2.1.0",
"description": "A wrapper for Mixpanel's data export API. Simply instantiate the class with your API secret and key and then make calls to api methods and get json back.",
"keywords": [
"mixpanel",
"api",
"export",
"data",
"analytics"
],
"dependencies": {
"needle": "^2.0.1"
},
"homepage": "https://github.com/strawbrary/mixpanel-data-export-js",
"bugs": {
"url": "https://github.com/strawbrary/mixpanel-data-export-js/issues"
},
"license": "MIT",
"author": {
"name": "Mike Carter",
"email": "[email protected]",
"url": "http://mcarter.me/"
},
"main": "src/mixpanel_data_export.js",
"files": [
"src/mixpanel_data_export.js"
],
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/strawbrary/mixpanel-data-export-js.git"
},
"devDependencies": {
"assert": "^1.1.2",
"mocha": "^4.0.1"
},
"engines": {
"node": ">= 4.0.0"
}
}