forked from SmartThingsCommunity/smartthings-core-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.94 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
{
"name": "@smartthings/core-sdk",
"version": "1.8.1",
"description": "JavaScript/TypeScript library for using SmartThings APIs",
"author": "SmartThings, Inc.",
"homepage": "https://github.com/SmartThingsCommunity/smartthings-core-sdk",
"bugs": "https://github.com/SmartThingsCommunity/smartthings-core-sdk/issues",
"repository": {
"type": "git",
"url": "https://github.com/SmartThingsCommunity/smartthings-core-sdk"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist/**/*"
],
"dependencies": {
"async-mutex": "^0.2.1",
"axios": "^0.21.1",
"http-signature": "^1.3.4",
"qs": "^6.9.3",
"sshpk": "^1.16.1",
"underscore": "^1.10.2"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.10",
"@types/node": "^12.11.7",
"@types/qs": "^6.9.1",
"@types/sshpk": "^1.10.4",
"@types/underscore": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^26.4.2",
"node": "^12.13.0",
"prettier": "^2.0.4",
"semantic-release": "^17.4.2",
"ts-jest": "^26.3.0",
"typedoc": "^0.20.36",
"typescript": "^3.9.9"
},
"scripts": {
"format": "eslint --ext .ts src test --fix",
"lint": "eslint --ext .ts src test",
"test": "jest",
"test-coverage": "jest --coverage",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"compile": "tsc -b",
"watch": "tsc -b -w",
"build": "npm run clean && npm run compile",
"docs-gen": "typedoc --out docs src/index.ts",
"json-docs-gen": "typedoc --json dist/docs.json src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
}
}