-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 KB
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
{
"name": "google-spreadsheet-cli",
"version": "2.0.1",
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com/)",
"description": "📊 CLI for reading and writing data into Google Spreadsheet",
"engines": {
"node": "6"
},
"nyc": {
"exclude": [
"node_modules",
"dist",
"coverage",
"webpack.config.js",
"**/**.test.js"
]
},
"bin": {
"google-spreadsheet-cli": "./bin/google-spreadsheet-cli"
},
"scripts": {
"test": "mocha -t 20000 $(find src -name '*.test.js')",
"test:watch": "mocha -t 20000 -w $(find src -name '*.test.js')",
"test:coverage": "nyc --all --statements=94 --lines=94 --functions=96 --branches=66 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- npm run --silent test",
"test:coverage:send": "cat ./coverage/lcov.info | coveralls",
"update": "updtr",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"
},
"main": "src/cli.js",
"repository": {
"type": "git",
"url": "git://github.com/fgribreau/google-spreadsheet-cli.git"
},
"bugs": {
"url": "https://github.com/fgribreau/google-spreadsheet-cli/issues"
},
"homepage": "https://github.com/fgribreau/google-spreadsheet-cli",
"keywords": [
"google",
"google spreadsheet",
"spreadsheet",
"apps",
"cli"
],
"devDependencies": {
"chai": "^3.5.0",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^2.11.12",
"execa": "^0.6.3",
"mocha": "^3.0.1",
"nyc": "^8.1.0",
"sinon": "^1.17.5",
"updtr": "^0.2.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"debug": "^2.6.4",
"google-spreadsheet": "^2.0.3",
"is-base64": "^0.0.2",
"json5": "^0.5.1",
"lodash": "^4.17.4",
"yargs": "^7.1.0"
},
"license": "MIT"
}