-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "isbn2lccn",
"version": "0.1.0",
"author": "Adam Boe",
"description": "Convert International Standard Book Number (ISBN) to Library of Congress Control Number (LCCN)",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/aboe026/isbn2lccn.git"
},
"bugs": {
"url": "https://github.com/aboe026/isbn2lccn/issues"
},
"engines": {
"node": ">=16.13.2",
"npm": ">=8.1.2"
},
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf build",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"start": "ts-node src/index.ts",
"temp": "tsc --init"
},
"dependencies": {
"csv-parse": "5.0.4",
"csv-stringify": "6.0.5",
"dotenv": "12.0.3",
"envalid": "7.2.2",
"fs-extra": "10.0.0",
"node-fetch": "2.6.6",
"pretty-ms": "7.0.1",
"selenium-webdriver": "4.1.1"
},
"devDependencies": {
"@types/csv-parse": "1.2.2",
"@types/csv-stringify": "3.1.0",
"@types/fs-extra": "9.0.13",
"@types/node-fetch": "2.5.12",
"@types/pretty-ms": "5.0.1",
"@types/selenium-webdriver": "4.0.16",
"@typescript-eslint/parser": "5.9.1",
"@typescript-eslint/eslint-plugin": "5.9.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
}
}