-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "@dazn/kopytko-cli",
"version": "2.0.0",
"description": "Command line interface for Kopytko Ecosystem.",
"keywords": [
"brightscript",
"kopytko",
"roku"
],
"contributors": [
"Tomasz Bazelczuk <[email protected]>",
"Tomasz Rejment <[email protected]>",
"Błażej Chełkowski <[email protected]>"
],
"bin": {
"kopytko": "bin/kopytko.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"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.1",
"commander": "^8.3.0",
"inquirer": "^8.2.0"
},
"devDependencies": {
"eslint": "^8.21.0"
},
"peerDependencies": {
"@dazn/kopytko-packager": "^1.2.3",
"@dazn/kopytko-unit-testing-framework": "^2.0.2"
},
"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",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
]
}
}