-
Notifications
You must be signed in to change notification settings - Fork 6
/
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": "3.0.0",
"description": "A modern Roku's Brightscript framework",
"keywords": [
"brightscript",
"kopytko",
"roku",
"kopytko-module"
],
"contributors": [
"Paweł Hertman <[email protected]>",
"Tomasz Rejment <[email protected]>",
"Błażej Chełkowski <[email protected]>",
"Radosław Zambrowski <[email protected]>",
"Mauricio Dziedzinski <[email protected]>",
"Tomasz Bazelczuk <[email protected]>"
],
"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.4.0"
},
"devDependencies": {
"@dazn/eslint-plugin-kopytko": "^2.1.0",
"@dazn/kopytko-packager": "^1.2.5",
"@dazn/kopytko-unit-testing-framework": "^2.3.1",
"eslint": "^8.21.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"
]
}
}