-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
71 lines (71 loc) · 2.19 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
{
"name": "@smartthings/core-sdk",
"version": "8.3.2",
"description": "JavaScript/TypeScript library for using SmartThings APIs",
"author": "Samsung Electronics Co., LTD.",
"homepage": "https://github.com/SmartThingsCommunity/smartthings-core-sdk",
"bugs": "https://github.com/SmartThingsCommunity/smartthings-core-sdk/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/SmartThingsCommunity/smartthings-core-sdk.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"files": [
"dist/**/*"
],
"dependencies": {
"async-mutex": "^0.4.0",
"axios": "^0.28.1",
"http-signature": "^1.3.6",
"lodash.isdate": "^4.0.1",
"lodash.isstring": "^4.0.1",
"qs": "^6.11.2",
"sshpk": "^1.17.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^29.5.0",
"@types/lodash.isdate": "^4.0.7",
"@types/lodash.isstring": "^4.0.7",
"@types/node": "^18.15.7",
"@types/qs": "^6.9.8",
"@types/sshpk": "^1.17.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"scripts": {
"format": "eslint --ext .ts src test --fix",
"lint": "eslint --ext .ts src test",
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"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",
"version": "changeset version && npm i --package-lock-only && npm run build",
"release": "npm run build && changeset publish"
}
}