Skip to content

Commit 007c037

Browse files
committed
Initia Commit
0 parents  commit 007c037

File tree

5 files changed

+186
-0
lines changed

5 files changed

+186
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# JSON FROM TABLE

index.js

Whitespace-only changes.

package-lock.json

Lines changed: 155 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "jsonfromtable",
3+
"version": "1.0.0",
4+
"description": "Generate json output from html tables",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/acharyaroshanji/jsonfromtable.git"
12+
},
13+
"keywords": [
14+
"[\"tabletojson\"",
15+
"\"htmltabletojson\"",
16+
"\"scrape",
17+
"tables\"]"
18+
],
19+
"author": "Roshan Acharya",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/acharyaroshanji/jsonfromtable/issues"
23+
},
24+
"homepage": "https://github.com/acharyaroshanji/jsonfromtable#readme",
25+
"dependencies": {
26+
"cheerio": "^1.0.0-rc.3",
27+
"node-fetch": "^2.6.0"
28+
}
29+
}

0 commit comments

Comments
 (0)