-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 906 Bytes
/
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
{
"name": "tax-map",
"version": "1.0.0",
"description": "Map of IRS tax forms",
"main": "index.js",
"scripts": {
"fetch-forms": "node dist/processing/fetchForms.js",
"clean-fetch-forms": "npm run build && npm run fetch-forms data clean",
"clean-build-map": "npm run build && node dist/processing/buildMap.js",
"build": "node_modules/.bin/tsc --project tsconfig.json",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"author": "Nathan Pastor",
"license": "ISC",
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"node-fetch": "^2.6.0",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3"
}
}