-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.01 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
{
"author": {
"name": "Gil Ferriera <gfgilly@gmail.com>",
"url": "https://github.com/misterGF"
},
"name": "echo-table-2-file",
"description": "Echo converts HTML tables into JSON/CSV objects. Use it to make html data easy to transport.",
"version": "0.0.8",
"main": "src/echo-table-2-file.js",
"scripts": {
"test": "mocha test/echo.test.js"
},
"license": "MIT",
"keywords": [
"echo",
"html",
"table",
"convert",
"json",
"csv",
"migration"
],
"repository": {
"type": "git",
"url": "git://github.com/misterGF/echo.git"
},
"dependencies": {
"cheerio": "0.19.0",
"colors": "^1.1.2",
"json2csv": "^3.1.0",
"request": "^2.69.0",
"tabletojson": "^0.4.0"
},
"engines": {
"node": ">=4.4.4"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-fs": "^0.1.0",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"mocha": "^2.4.5"
}
}