-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "db_importer",
"version": "0.4.1",
"description": "import Aozora books/persons/ranking information to a DB",
"scripts": {
"execute": "node dist/csv2db.js && node dist/pid2db.js && node dist/ranking2db.js",
"build": "tsc",
"lint": "eslint src/**/*.ts"
},
"author": "Kenichi Sato <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/aozorahack/db_importer.git"
},
"engines": {
"node": "14.x"
},
"license": "MIT",
"dependencies": {
"adm-zip": "0.4.14",
"cheerio": "1.0.0-rc.3",
"command-line-args": "5.1.1",
"csv-parse": "4.8.6",
"dotenv": "8.2.0",
"mongodb": "3.6.3",
"request": "2.88.2",
"request-promise": "4.2.5"
},
"devDependencies": {
"@types/adm-zip": "0.4.32",
"@types/cheerio": "0.22.16",
"@types/command-line-args": "5.0.0",
"@types/csv-parse": "1.2.2",
"@types/dotenv": "8.2.0",
"@types/mongodb": "3.3.16",
"@types/request-promise": "4.1.45",
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"eslint": "6.8.0",
"ts-node": "8.6.2",
"typescript": "3.8.2"
}
}