-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1010 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1010 Bytes
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
{
"name": "koatuu-parser",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"download-json": "node download",
"start": "node index",
"lint": "eslint --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/bigquery": "^5.10.0",
"dotenv": "^14.2.0",
"iconv-lite": "^0.6.3",
"node-fetch": "^2.6.0",
"nodejs-file-downloader": "^4.9.2",
"unzip-stream": "^0.3.1",
"xml-to-json-stream": "^1.1.0"
},
"devDependencies": {
"commitlint": "^15.0.0",
"eslint": "^8.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint --format -E HUSKY_GIT_PARAMS"
}
}
}