-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "israeli-vat-scraper",
"version": "0.3.3",
"description": "Scraper app for fetching Israeli VAT data",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git@github.com:gilgardosh/israeli-vat-scraper.git"
},
"bugs": {
"url": "https://github.com/gilgardosh/israeli-vat-scraper/issues"
},
"homepage": "https://github.com/gilgardosh/israeli-vat-scraper#readme",
"author": "gilgardosh <gilgardosh@gmail.com>",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "node --experimental-json-modules --loader ts-node/esm src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "yarn lint:fix",
"build": "tsc",
"prepublish": "yarn build"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"ajv": "8.11.0",
"dotenv": "16.0.0",
"puppeteer": "13.5.1"
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/puppeteer": "5.4.5",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.6.1",
"ts-node": "10.7.0",
"typescript": "4.6.3"
}
}