-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
89 lines (89 loc) · 2.63 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "firestore_google-apps-script",
"version": "1.0.34",
"description": "A Google Apps Script library for accessing Google Cloud Firestore",
"homepage": "https://github.com/grahamearley/FirestoreGoogleAppsScript",
"bugs": "https://github.com/grahamearley/FirestoreGoogleAppsScript/issues",
"license": "MIT",
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"impliedStrict": true,
"project": [
"./tsconfig.json",
"./typings/gapi.client.firestore/tsconfig.json"
],
"tsconfigRootDir": "./"
},
"plugins": [
"@typescript-eslint"
],
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^[A-Z]|_$"
}
],
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "class",
"format": [
"PascalCase"
],
"trailingUnderscore": "allow"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-non-null-assertion": "off"
},
"overrides": [
{
"files": [
"typings/gapi.client.firestore/index.d.ts"
],
"rules": {
"@typescript-eslint/ban-types": "off"
}
}
]
},
"prettier": {
"endOfLine": "crlf",
"printWidth": 120,
"quoteProps": "consistent",
"singleQuote": true
},
"scripts": {
"lint": "eslint --color --ext .ts . && tsc || true",
"fix": "eslint --color --fix --ext .ts . && tsc || true",
"postinstall": "replace-in-file \"declare var console\" \"//declare var console\" node_modules/@types/google-apps-script/google-apps-script.base.d.ts"
},
"repository": "github:grahamearley/FirestoreGoogleAppsScript",
"dependencies": {
"@types/gapi.client": "^1.0.3",
"@types/google-apps-script": "^1.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"replace-in-file": "^6.1.0",
"typescript": "^3.9.6"
}
}