This repository has been archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
111 lines (111 loc) · 2.45 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
{
"name": "generator-smartthings",
"version": "1.5.0",
"description": "Generates a SmartThings app",
"author": "SmartThings, Inc.",
"contributors": [
"Eric Rodewald <eric.rodewald@smartthings.com>",
"Ross Stenersen <ross.stenersen@smartthings.com>"
],
"files": [
"generators",
"lib"
],
"main": "index.js",
"keywords": [
"yeoman-generator"
],
"devDependencies": {
"@semantic-release/changelog": "~3.0.4",
"@semantic-release/commit-analyzer": "~6.2.0",
"@semantic-release/git": "~7.0.16",
"@semantic-release/release-notes-generator": "~7.2.1",
"chai": "~4.2.0",
"codecov": "3.6.5",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"xo": "^0.24.0",
"conventional-changelog-eslint": "~3.0.1",
"mocha": "~6.2.0",
"nyc": "~14.1.1",
"semantic-git-commit-cli": "~3.2.2",
"semantic-release": "^15.13.19",
"sinon": "~7.3.2",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"scripts": {
"lint": "xo",
"test": "xo && nyc --reporter=text mocha test/**/*",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release -e ./config/release.config.js"
},
"dependencies": {
"axios": "0.19.0",
"chalk": "^2.4.2",
"inquirer": "^6.5.0",
"lodash": "^4.17.13",
"semver": "^6.2.0",
"yeoman-generator": "^4.0.1",
"yosay": "^2.0.2"
},
"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": "**/templates/**/*.js",
"rules": {
"import/no-unresolved": 0
}
}
]
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"license": "Apache-2.0",
"homepage": "https://github.com/SmartThingsCommunity/generator-smartthings",
"repository": "SmartThingsCommunity/generator-smartthings"
}