-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.69 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
{
"name": "@dazn/kopytko-packager",
"version": "1.2.5",
"description": "Modern Roku apps packager",
"scripts": {
"lint": "eslint ./"
},
"main": "index.js",
"keywords": [
"roku",
"brightscript",
"kopytko"
],
"contributors": [
"Paweł Hertman <[email protected]>",
"Tomasz Rejment <[email protected]>",
"Błażej Chełkowski <[email protected]>",
"Radosław Zambrowski <[email protected]>",
"Tomasz Bazelczuk <[email protected]>"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getndazn/kopytko-packager.git"
},
"bugs": {
"url": "https://github.com/getndazn/kopytko-packager/issues"
},
"files": [
"scripts",
"src",
"base-manifest.js",
"index.js",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"adm-zip": "^0.5.5",
"dotenv": "^9.0.2",
"fs-extra": "^10.0.0",
"glob-promise": "^4.1.0",
"latinize": "^0.5.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"ora": "^5.4.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"telnet-client": "^1.4.9",
"terminal-kit": "^2.1.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"eslint": "^7.26.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
]
}
}