-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 776 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 776 Bytes
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
{
"name": "sheetdown",
"version": "1.2.5",
"description": "Convert a Google Spreadsheet into a table in Markdown",
"main": "index.js",
"scripts": {
"test": "standard && tape ./test/index.js | tap-spec"
},
"repository": {
"type": "git",
"url": "http://github.com/jlord/sheetdown.git"
},
"bugs": {
"url": "http://github.com/jlord/sheetdown/issues"
},
"bin": {
"sheetdown": "./index.js"
},
"author": "Jessica Lord",
"license": "BSD-2-Clause",
"dependencies": {
"binary-csv": "~0.1.7",
"concat-stream": "~1.4.1",
"google-spreadsheets-key-parser": "^1.1.0",
"request": "~2.33.0",
"to-markdown": "^1.2.1"
},
"devDependencies": {
"standard": "^4.5.4",
"tap-spec": "^4.0.2",
"tape": "^4.0.1"
}
}