2020-06-26 23:05:35 +03:00
|
|
|
{
|
|
|
|
"name": "app-store-analytics-export",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Scripts for exporting app analytics to BigQuery",
|
|
|
|
"main": "analytics_export/startExport.js",
|
|
|
|
"repository": "https://github.com/mozilla/app-store-analytics-export.git",
|
|
|
|
"author": "Ben Wu <bewu@mozilla.com>",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"scripts": {
|
2020-06-29 17:38:02 +03:00
|
|
|
"export": "node analytics_export/startExport.js",
|
2020-06-27 07:08:19 +03:00
|
|
|
"lint": "eslint analytics_export/",
|
|
|
|
"lint-fix": "eslint --fix analytics_export/",
|
2020-07-10 04:34:06 +03:00
|
|
|
"pretty": "prettier --write analytics_export/ test/",
|
2020-06-26 23:05:35 +03:00
|
|
|
"test": "mocha"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-06-29 23:49:56 +03:00
|
|
|
"@google-cloud/bigquery": "^5.0.0",
|
2020-07-10 22:06:33 +03:00
|
|
|
"await-semaphore": "^0.1.3",
|
2020-06-27 07:08:19 +03:00
|
|
|
"itunesconnectanalytics": "JanHalozan/iTunesConnectAnalytics#822494f03764a33a5e064a74078f5fa45a71e53a",
|
2020-06-29 17:38:02 +03:00
|
|
|
"node-fetch": "^2.6.0",
|
2020-06-26 23:05:35 +03:00
|
|
|
"request": "^2.88.2",
|
2020-06-30 01:43:34 +03:00
|
|
|
"tempy": "^0.5.0",
|
2020-06-26 23:05:35 +03:00
|
|
|
"yargs": "^15.3.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"chai": "^4.2.0",
|
2020-07-13 23:16:20 +03:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-06-27 07:08:19 +03:00
|
|
|
"eslint": "^7.3.1",
|
|
|
|
"eslint-config-airbnb-base": "^14.2.0",
|
2020-07-09 23:43:42 +03:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-06-27 07:08:19 +03:00
|
|
|
"eslint-plugin-import": "^2.21.2",
|
2020-07-09 23:43:42 +03:00
|
|
|
"mocha": "^8.0.1",
|
2020-07-10 04:34:06 +03:00
|
|
|
"prettier": "^2.0.5",
|
|
|
|
"proxyquire": "^2.1.3",
|
|
|
|
"sinon": "^9.0.2"
|
2020-06-26 23:05:35 +03:00
|
|
|
}
|
|
|
|
}
|