-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 1.07 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
{
"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 <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"export": "node analytics_export/startExport.js",
"lint": "eslint analytics_export/",
"lint-fix": "eslint --fix analytics_export/",
"pretty": "prettier --write analytics_export/ test/",
"test": "mocha"
},
"dependencies": {
"@google-cloud/bigquery": "^5.5.0",
"await-semaphore": "^0.1.3",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"tempy": "^0.5.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"mocha": "^8.2.1",
"prettier": "^2.0.5",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2"
}
}