1 | {
|
2 | "name": "@resolute/gsheet",
|
3 | "version": "0.1.1",
|
4 | "description": "Simple abstractions for Google Sheets",
|
5 | "main": "./",
|
6 | "types": "./",
|
7 | "files": [
|
8 | "*.js",
|
9 | "*.d.ts",
|
10 | "!*.test.js",
|
11 | "!*.test.d.ts"
|
12 | ],
|
13 | "scripts": {
|
14 | "build": "npm run clean && tsc && prettier --write *.js *.d.ts && (eslint --fix *.js > /dev/null 2>&1; true)",
|
15 | "release": "np",
|
16 | "prepublishOnly": "npm test && npm run build",
|
17 | "clean": "del-cli *.js *.js.map *.d.ts",
|
18 | "test": "echo TODO"
|
19 | },
|
20 | "repository": {
|
21 | "type": "git",
|
22 | "url": "git+https://github.com/resolute/gsheet.git"
|
23 | },
|
24 | "license": "MIT",
|
25 | "engines": {
|
26 | "node": ">=10.0.0"
|
27 | },
|
28 | "bugs": {
|
29 | "url": "https://github.com/resolute/gsheet/issues"
|
30 | },
|
31 | "homepage": "https://github.com/resolute/gsheet",
|
32 | "keywords": [
|
33 | "google",
|
34 | "sheets",
|
35 | "gsheet"
|
36 | ],
|
37 | "dependencies": {
|
38 | "@googleapis/sheets": "^4.0.2",
|
39 | "@resolute/std": "^0.2.0"
|
40 | },
|
41 | "devDependencies": {
|
42 | "@types/node": "*",
|
43 | "@typescript-eslint/eslint-plugin": "*",
|
44 | "@typescript-eslint/parser": "*",
|
45 | "del-cli": "*",
|
46 | "eslint": "*",
|
47 | "eslint-config-airbnb-base": "*",
|
48 | "eslint-plugin-import": "*",
|
49 | "np": "*",
|
50 | "prettier": "*",
|
51 | "typescript": "*"
|
52 | }
|
53 | }
|