-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
37 lines (37 loc) · 869 Bytes
/
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
{
"name": "spreadsheet-to-json",
"version": "2.0.0",
"description": "Convert Google Spreadsheets to JSON using Javascript",
"license": "MIT",
"repository": "revolunet/spreadsheet-to-json",
"author": {
"name": "Julien Bouquillon",
"email": "[email protected]",
"url": "http://github.com/revolunet"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "node ./index",
"test": "find ./spec -iname '*.spec.js' -exec node {} \\; | tap-spec"
},
"main": "./src/index.js",
"keywords": [
"google",
"spreadsheet",
"json",
"drive"
],
"dependencies": {
"google-spreadsheet": "^3.0.10"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"proxyquire": "1.6.0",
"tap-spec": "^5.0.0",
"tape": "4.0.0"
}
}