-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.96 KB
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
{
"name": "@dazn/kopytko-cli",
"version": "2.1.1",
"description": "Command line interface for Kopytko Ecosystem.",
"keywords": [
"brightscript",
"kopytko",
"roku"
],
"contributors": [
"Tomasz Bazelczuk <tbazelczuk@gmail.com>",
"Tomasz Rejment <trejment@gmail.com>",
"Błażej Chełkowski <blazej.chelkowski@outlook.com>"
],
"bin": {
"kopytko": "bin/kopytko.js"
},
"files": [
"schematics",
"commands",
"options",
"actions",
"bin"
],
"scripts": {
"lint": "eslint -c .eslintrc ."
},
"dependencies": {
"@angular-devkit/core": "^13.1.4",
"@angular-devkit/schematics": "^13.1.4",
"ansi-colors": "^4.1.3",
"commander": "^14.0.3",
"inquirer": "^8.2.7"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"eslint": "^8.57.1",
"semantic-release": "^25.0.3"
},
"peerDependencies": {
"@dazn/kopytko-packager": "^1.4.2",
"@dazn/kopytko-unit-testing-framework": "^2.6.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getndazn/kopytko-cli.git"
},
"bugs": {
"url": "https://github.com/getndazn/kopytko-cli/issues"
},
"publishConfig": {
"access": "public"
},
"schematics": "./schematics/collection.json",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true,
"provenance": true
}
],
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}