-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
{
"name": "@smartthings/smartapp",
"version": "4.3.7",
"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": "eslint .",
"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": ">=20"
},
"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.5.2",
"@types/aws-lambda": "^8.10.162",
"async-mutex": "^0.5.0",
"axios": "^1.16.1",
"fs-extra": "~11.3.5",
"http-signature": "~1.4.0",
"i18n": "~0.15.3",
"node-cache": "^5.1.2",
"sshpk": "~1.18.0",
"winston": "~3.19.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@snyk/protect": "^1.1305.1",
"@types/i18n": "^0.13.12",
"@types/jest": "^30.0.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^17.4.2",
"eslint": "^10.4.1",
"eslint-plugin-n": "^18.1.0",
"eslint-plugin-unicorn": "^65.0.1",
"globals": "^17.6.0",
"jest": "^30.4.2",
"jsdoc": "^4.0.5",
"nock": "^14.0.15",
"proxyquire": "^2.1.3",
"semantic-release": "^25.0.3",
"sinon": "^22.0.0",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"snyk": false,
"overrides": {
"lodash": "^4.18.1",
"tmp": "^0.2.7"
}
}