-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 779 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
34
35
{
"name": "sheets-simplified",
"version": "1.0.4",
"description": "TypeScript classes based package that eases and increases safety of working with Google Sheets API v4.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"keywords": [
"google spreadsheets",
"google sheets",
"google",
"spreadsheet",
"spreadsheets",
"sheets",
"googleapis"
],
"scripts": {
"clean": "del-cli ./build/*",
"build": "npm run clean && tsc",
"test": "jest --coverage"
},
"author": "M1chalS",
"license": "ISC",
"dependencies": {
"googleapis": "^120.0.0"
},
"devDependencies": {
"dotenv": "^16.3.1",
"del-cli": "^5.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}