forked from lmartelli/node-google-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"author": "Theo Ephraim <[email protected]> (https://theoephraim.com)",
"name": "google-spreadsheet",
"description": "Google Sheets API (v4) -- simple interface to read/write data and manage sheets",
"version": "3.2.0",
"license": "Unlicense",
"keywords": [
"google spreadsheets",
"google sheets",
"google docs",
"google",
"spreadsheet",
"spreadsheets",
"sheets",
"gdata",
"api",
"googleapis"
],
"homepage": "https://github.com/theoephraim/node-google-spreadsheet",
"repository": {
"type": "git",
"url": "git://github.com/theoephraim/node-google-spreadsheet.git"
},
"main": "index.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"axios": "^0.21.4",
"google-auth-library": "^6.1.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"delay": "^4.3.0",
"docsify-cli": "^4.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"husky": "^4.2.0",
"jest": "^24.9.0",
"jest-junit": "^10.0.0"
},
"scripts": {
"test": "jest --runInBand",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"docs:preview": "docsify serve docs",
"readme:copy": "echo \"<!-- DO NOT EDIT THIS FILE, EDIT MAIN README.md AND RUN \\`npm readme:copy\\` instead -->\n\n_Welcome to the docs site for_\n\" | cat - README.md > docs/README.md"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/examples/",
"/test/"
]
}
}