-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.85 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": "@smartthings/file-context-store",
"version": "1.1.2",
"description": "Stores SmartApp configuration and auth tokens for use in app-initiated calls",
"displayName": "SmartThings SmartApp File Context Store",
"main": "index.js",
"author": "SmartThings",
"contributors": [
"Bob Florian"
],
"keywords": [
"smartthings",
"smartapp"
],
"scripts": {
"lint": "xo",
"test": "jest",
"test:coverage": "jest --coverage"
},
"license": "Apache-2.0",
"repository": "github.com:SmartThingsCommunity/file-context-store-nodejs.git",
"bugs": {
"url": "https://github.com/SmartThingsCommunity/file-context-store-nodejs/issues"
},
"homepage": "https://github.com/SmartThingsCommunity/file-context-store-nodejs#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"semantic-release": "^21.0.1",
"uuid": "^9.0.1",
"xo": "~0.56.0"
},
"xo": {
"space": false,
"semicolon": false,
"rules": {
"no-useless-constructor": "warn",
"prefer-object-spread": "warn",
"no-template-curly-in-string": "off",
"newline-before-return": "off",
"padding-line-between-statements": "off",
"quote-props": [
"error",
"consistent"
],
"import/extensions": "off",
"object-curly-spacing": "off",
"capitalized-comments": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/empty-brace-spaces": "off",
"unicorn/no-this-assignment": "off",
"unicorn/prefer-ternary": "off",
"unicorn/no-array-for-each": "warn",
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/object-curly-spacing": "off",
"arrow-body-style": "off",
"comma-dangle": "off",
"complexity": "off",
"import/order": "off",
"max-depth": "off",
"object-shorthand": "off",
"operator-linebreak": "off",
"n/file-extension-in-import": "off",
"n/prefer-global/process": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/semi": "off",
"unicorn/prefer-logical-operator-over-ternary": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-spread": "off",
"unicorn/switch-case-braces": "off"
},
"overrides": [],
"envs": [
"jest"
]
}
}