forked from getndazn/kopytko-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "@dazn/kopytko-framework",
"version": "1.1.1",
"description": "A modern Roku's Brightscript framework",
"keywords": [
"brightscript",
"kopytko",
"roku",
"kopytko-module"
],
"contributors": [
"Paweł Hertman <pawel@hertman.eu>",
"Tomasz Rejment <trejment@gmail.com>",
"Błażej Chełkowski <blazej.chelkowski@outlook.com>",
"Radosław Zambrowski <radekzam@gmail.com>",
"Mauricio Dziedzinski <d.mauriciofarias@gmail.com>",
"Tomasz Bazelczuk <tbazelczuk@gmail.com>"
],
"files": [
"src",
"!**/_tests"
],
"scripts": {
"lint": "eslint --ext .brs src/",
"test": "node node_modules/@dazn/kopytko-unit-testing-framework/scripts/test.js"
},
"dependencies": {
"@dazn/kopytko-utils": "^2.0.1"
},
"devDependencies": {
"@dazn/eslint-plugin-kopytko": "^2.1.0",
"@dazn/kopytko-packager": "^1.2.0",
"@dazn/kopytko-unit-testing-framework": "^1.0.3",
"eslint": "^8.10.0"
},
"license": "MIT",
"kopytkoModuleDir": "src/",
"repository": {
"type": "git",
"url": "https://github.com/getndazn/kopytko-framework.git"
},
"bugs": {
"url": "https://github.com/getndazn/kopytko-framework/issues"
},
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
]
}
}