-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "jsonfromtable",
"version": "3.1.2",
"description": "Convert html tables to object (or array)",
"main": "dist/index.js",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"lint": "eslint src/**.ts",
"test": "jest",
"clean": "rimraf dist",
"cb": "yarn clean && yarn build",
"prepublishOnly": "yarn lint && yarn test && yarn build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/coderosh/jsonfromtable.git"
},
"keywords": [
"json from table",
"table to json",
"html to json",
"table parser",
"html table",
"table scrapper",
"scrapper",
"json",
"table"
],
"author": "Roshan Acharya <acharyaroshan2357@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderosh/jsonfromtable/issues"
},
"homepage": "https://github.com/coderosh/jsonfromtable#readme",
"dependencies": {
"docpa": "^1.0.1",
"node-fetch": "^2.6.1"
},
"gitHooks": {
"pre-commit": "lint-staged && yarn cb && yarn test && git add ."
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.4.5",
"lint-staged": "^11.0.0",
"nock": "^13.2.1",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.3.4",
"yorkie": "^2.0.0"
}
}