-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 774 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 774 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": "sheetquery",
"version": "1.5.2",
"description": "Query Builder/ORM for Google Sheets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "jest",
"prepack": "npm run clean && npm run build"
},
"keywords": [
"gas",
"google",
"apps",
"script",
"google",
"google sheets",
"google apps script",
"spreadsheet",
"query builder",
"orm"
],
"author": "Vance Lucas <vance@vancelucas.com>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/vlucas/sheetquery",
"devDependencies": {
"@types/jest": "^26.0.19",
"gasmask": "^1.3.8",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}