-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "google-sheets-table",
"version": "0.8.5",
"description": "Treat a Google Sheet like a database table",
"engines": {
"node": ">=20.18.1",
"npm": ">=10.8.2"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsup ./src/index.ts --format cjs,esm --dts && npx fix-tsup-cjs",
"example": "npm run build && nodemon ./example.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "rm -rf ./dist && tap run"
},
"prepublish": "tsc",
"repository": {
"type": "git",
"url": "git+https://github.com/twistedstream/google-sheets-table.git"
},
"author": "twistedstream",
"license": "MIT",
"bugs": {
"url": "https://github.com/twistedstream/google-sheets-table/issues"
},
"homepage": "https://github.com/twistedstream/google-sheets-table#readme",
"dependencies": {
"@googleapis/sheets": "^9.3.1",
"async-mutex": "^0.5.0",
"google-auth-library": "^9.15.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/lodash": "^4.14.202",
"@types/node": "^20.17.9",
"@types/sinon": "^17.0.3",
"dotenv": "^16.4.7",
"fix-tsup-cjs": "^1.2.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"sinon": "^19.0.2",
"tap": "^21.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typedoc": "^0.27.2",
"typescript": "^5.7.2"
},
"tap": {
"coverage-map": "code-coverage-map.js"
}
}