-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
68
69
70
71
72
73
{
"name": "spreadstream",
"version": "4.0.4",
"description": "Pipe data from and to google spreadsheet",
"main": "./lib/spreadstream.js",
"bin": {
"spreadstream": "./bin/spreadstream.js"
},
"scripts": {
"test": "npm run lint && nyc mocha",
"test:watch": "mocha -w",
"coverage": "nyc mocha",
"coverage:html": "npm run coverage && nyc report --reporter=html",
"lint": "standard",
"docs": "ln -f README.md ./docs/README.md && git commit -m 'doc: Update documentation' ./docs/README.md ./README.md > /dev/null && echo 'doc: Changes commited' || echo 'doc: No change'",
"gitready": "git diff --exit-code > /dev/null && git diff --cached --exit-code > /dev/null || echo 'Please commit changes first'",
"release": "npm run docs && npm run gitready && npm test && standard-version",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch"
},
"keywords": [
"spreadsheet",
"sheet",
"google",
"stream",
"pipe",
"json",
"ndjson",
"ldjson",
"csv"
],
"author": "Jean Ponchon <jean.ponchon@novadiscovery.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.2",
"csv-parse": "^4.8.8",
"csv-write-stream": "^2.0.0",
"fs-extra": "^7.0.0",
"google-auth-library": "^7.0.2",
"googleapis": "^67.1.1",
"inquirer": "^6.0.0",
"lodash": "^4.17.15",
"mississippi": "^2.0.0",
"ndjson": "^1.5.0",
"path": "^0.12.7",
"rc": "^1.2.8",
"xdg-basedir": "^3.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"standard": "^11.0.0",
"standard-version": "^9.1.1"
},
"standard": {
"ignore": [
"/docs/"
]
},
"bugs": {
"url": "https://github.com/nodys/spreadstream/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nodys/spreadstream.git"
},
"reveal": true
}