-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "big-query-importer",
"version": "1.1.2",
"description": "Import pages from Clay to Google BigQuery.",
"author": "New York Media",
"license": "MIT",
"engines": {
"node": "6.10.1"
},
"main": "app.js",
"bin": {
"big-query-importer": "./bin/cli.js"
},
"scripts": {
"test": "npm run lint && mocha",
"start": "node services/big-query.js",
"lint": "eslint --max-warnings 0 lib modules servies"
},
"repository": {
"type": "git",
"url": "https://github.com/nymag/big-query-importer.git"
},
"keywords": [
"clay",
"nymag",
"big query",
"big query importer"
],
"homepage": "https://github.com/nymag/big-query-importer",
"pre-push": [
"lint"
],
"dependencies": {
"@google-cloud/bigquery": "^0.9.2",
"amphora": "^2.12.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"fs": "0.0.1-security",
"highland": "^2.11.1",
"lodash": "^4.17.4",
"oboe": "^2.1.3",
"path": "^0.12.7",
"request": "^2.81.0",
"striptags": "^3.0.1",
"url": "^0.11.0",
"word-count": "^0.2.2",
"yargs": "^7.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"mocha": "^3.2.0",
"sinon": "^2.1.0"
}
}