-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.71 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
{
"name": "graybooker",
"version": "2022.10.0",
"description": "Parse Illinois Gray Book data into JSON.",
"license": "MIT",
"author": "Geoffrey Challen <[email protected]>",
"main": "index.js",
"scripts": {
"checker": "npm run depcheck && npm run prettier && npm run eslint",
"depcheck": "depcheck --ignores=prettier-plugin-*,eslint-plugin-*",
"eslint": "eslint src/**",
"exporttocsv": "npm run --silent jsontocsv > output/results.csv",
"jsontocsv": "ts-node src/jsontocsv.ts",
"ncu": "ncu",
"pdftotext": "ts-node src/pdftotext.ts",
"texttojson": "ts-node src/texttojson.ts",
"prettier": "prettier -w --plugin=prettier-plugin-organize-imports . && prettier-package-json --write",
"watch": "npm-watch build"
},
"dependencies": {
"app-root-path": "3.1.0",
"chai": "4.3.6",
"child-process-promise": "2.2.1",
"csv-stringify": "6.2.0",
"depcheck": "1.4.3",
"download": "8.0.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"minimist": "1.2.7",
"node-gzip": "1.1.2",
"ts-node": "10.9.1"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/child-process-promise": "2.2.2",
"@types/download": "8.0.1",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.187",
"@types/minimist": "1.2.2",
"@types/node": "18.11.9",
"@types/node-gzip": "1.1.0",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"npm-check-updates": "16.3.16",
"prettier": "2.7.1",
"prettier-package-json": "2.7.0",
"prettier-plugin-organize-imports": "3.1.1",
"typescript": "4.8.4"
}
}