-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.18 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
{
"name": "@dazn/kopytko-framework",
"version": "3.6.0",
"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": {
"format": "kopytko-format --write \"src/**/*.brs\"",
"format:check": "kopytko-format --check \"src/**/*.brs\"",
"lint": "kopytko-lint --check --source-dir src",
"lint:fix": "kopytko-lint --fix --source-dir src",
"test": "node node_modules/@dazn/kopytko-unit-testing-framework/scripts/test.js"
},
"dependencies": {
"@dazn/kopytko-utils": "^2.8.1"
},
"devDependencies": {
"@dazn/kopytko-packager": "^1.4.3",
"@dazn/kopytko-unit-testing-framework": "^2.6.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"kopytko-formatter": "^1.1.13",
"kopytko-linter": "^1.6.7",
"semantic-release": "^25.0.7"
},
"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",
{
"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"
]
}
}