-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "mixpanel-data-export",
"version": "2.0.2",
"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": {
"Base64": "^0.3.0",
"amp-extend": "^1.0.1",
"js-md5": "^0.7.2",
"q": "^1.1.2",
"xmlhttprequest": ">=1.5.0"
},
"homepage": "https://github.com/michaelcarter/mixpanel-data-export-js",
"bugs": {
"url": "https://github.com/michaelcarter/mixpanel-data-export-js/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Mike Carter",
"email": "[email protected]",
"url": "http://mcarter.me/"
},
"main": "src/mixpanel_data_export.js",
"files": [
"src/*",
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/michaelcarter/mixpanel-data-export-js.git"
},
"scripts": {
"release": "./scripts/release.sh",
"build": "grunt build",
"test": "grunt build && grunt mochaTest && karma start && grunt clean",
"clean": "grunt clean"
},
"devDependencies": {
"assert": "^1.1.2",
"browserify": "^6.3.3",
"grunt": "~0.4.2",
"grunt-browserify": "^3.2.1",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-compress": "^0.12.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-mocha-test": "^0.12.4",
"grunt-shell": "^1.1.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.0.1",
"karma-spec-reporter": "0.0.26",
"mocha": "^2.0.1",
"split": "^0.3.3"
}
}