-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
120 lines (120 loc) · 3.7 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@smartthings/smartapp",
"version": "4.3.5",
"description": "NodeJS SDK for SmartApps",
"displayName": "SmartThings SmartApp SDK for NodeJS",
"author": "SmartThings",
"contributors": [
"Bob Florian (https://github.com/bflorian)"
],
"keywords": [
"smartthings",
"smartapp"
],
"main": "index.js",
"types": "index.d.js",
"scripts": {
"lint": "xo",
"test:unit": "jest",
"test": "jest --coverage",
"start": "node ./smart-app.js",
"debug": "node --inspect ./lib/smart-app.js",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"doc-gen": "typedoc --out docsrc --plugin typedoc-plugin-markdown lib && node ./scripts/docgen-post-process.js"
},
"engines": {
"node": ">=16"
},
"license": "Apache-2.0",
"repository": "github:SmartThingsCommunity/smartapp-sdk-nodejs",
"bugs": {
"url": "https://github.com/SmartThingsCommunity/smartapp-sdk-nodejs/issues"
},
"homepage": "https://github.com/SmartThingsCommunity/smartapp-sdk-nodejs#readme",
"dependencies": {
"@smartthings/core-sdk": "^8.3.0",
"@types/aws-lambda": "^8.10.122",
"@types/i18n": "^0.13.6",
"async-mutex": "^0.4.0",
"axios": "^1.6.8",
"fs-extra": "~11.1.1",
"http-signature": "~1.3.6",
"i18n": "~0.15.1",
"node-cache": "^5.1.2",
"sshpk": "~1.17.0",
"winston": "~3.10.0"
},
"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",
"dotenv": "^16.0.3",
"jest": "^29.4.1",
"jsdoc": "^4.0.0",
"nock": "^13.3.0",
"proxyquire": "^2.1.3",
"semantic-release": "^21.0.1",
"sinon": "^15.0.1",
"@snyk/protect": "^1.1093.0",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5",
"uuid": "^9.0.1",
"xo": "~0.54.1"
},
"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"
]
},
"snyk": false
}