forked from SmartThingsCommunity/edge-cli-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.56 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
{
"name": "@smartthings/plugin-cli-edge",
"version": "1.16.0",
"description": "Edge-related SmartThings CLI commands",
"author": "SmartThings, Inc.",
"homepage": "https://github.com/SmartThingsCommunity/smartthings-cli",
"bugs": "https://github.com/SmartThingsCommunity/smartthings-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/SmartThingsCommunity/edge-cli-plugin"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=12.18.1 <17",
"npm": ">=8"
},
"files": [
"lib/**/*",
"/oclif.manifest.json"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"oclif-plugin"
],
"oclif": {
"commands": "./lib/commands",
"bin": "smartthings",
"devPlugins": [
"@oclif/plugin-help"
]
},
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2",
"@oclif/core": "^1.13.10",
"@smartthings/cli-lib": "^1.0.0-beta.16",
"@smartthings/core-sdk": "^5.1.1",
"axios": "^0.21.4",
"inquirer": "^8.2.4",
"js-yaml": "^4.1.0",
"jszip": "^3.9.1",
"picomatch": "^2.3.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@smartthings/cli-testlib": "^1.0.0-beta.10",
"@types/cli-table": "^0.3.0",
"@types/eventsource": "^1.1.8",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.11.24",
"@types/picomatch": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eventsource": "^2.0.0",
"jest": "^27.5.1",
"oclif": "^3.1.2",
"semantic-release": "^19.0.2",
"strip-ansi": "^6.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"format": "eslint --ext .ts src test .eslintrc.js --ignore-pattern '!.eslintrc.js' --fix",
"lint": "eslint --ext .ts src test .eslintrc.js --ignore-pattern '!.eslintrc.js'",
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"clean": "rm -rf lib && rm -f tsconfig.tsbuildinfo",
"compile": "tsc -b",
"watch": "tsc -b -w",
"readme": "oclif readme",
"build": "npm run clean && npm run compile && npm run readme",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
}
}