forked from SmartThingsCommunity/smartapp-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.87 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
{
"name": "@smartthings/smartapp",
"version": "2.2.0",
"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": "mocha test/unit/**",
"test": "xo && nyc mocha test/unit/**",
"start": "node ./smart-app.js",
"debug": "node --inspect ./lib/smart-app.js",
"semantic-release": "semantic-release -e ./config/release.config.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": ">=8.9.4"
},
"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": "^0.2.11",
"@types/aws-lambda": "^8.10.51",
"@types/i18n": "^0.8.6",
"async-mutex": "^0.1.4",
"axios": "^0.19.2",
"fs-extra": "~7.0.1",
"http-signature": "~1.2.0",
"i18n": "~0.8.5",
"node-cache": "^4.2.1",
"snyk": "^1.297.2",
"sshpk": "~1.16.1",
"underscore": "^1.9.1",
"winston": "~3.2.1"
},
"devDependencies": {
"@semantic-release/changelog": "~3.0.2",
"@semantic-release/commit-analyzer": "^6.1.1",
"@semantic-release/git": "~7.0.8",
"@semantic-release/release-notes-generator": "^7.1.7",
"chai": "~4.2.0",
"chai-datetime": "^1.5.0",
"conventional-changelog-eslint": "~3.0.1",
"dotenv": "^8.1.0",
"jsdoc": "^3.6.4",
"mocha": "^6.2.1",
"nock": "^10.0.6",
"nyc": "~13.3.0",
"proxyquire": "^2.1.3",
"semantic-git-commit-cli": "~3.2.2",
"semantic-release": "^15.13.24",
"sinon": "^7.5.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.9.3",
"xo": "~0.24.0"
},
"nyc": {
"watermarks": {
"lines": [
40,
95
],
"functions": [
40,
95
],
"branches": [
40,
95
],
"statements": [
40,
95
]
}
},
"xo": {
"space": false,
"semicolon": false,
"rules": {
"no-useless-constructor": 1,
"promise/prefer-await-to-then": 1,
"prefer-object-spread": 1,
"no-template-curly-in-string": 0,
"quote-props": [
"error",
"consistent"
]
},
"overrides": [
{
"files": "examples/**/*.js",
"rules": {
"import/no-unresolved": 0
}
}
]
},
"snyk": false
}