forked from getndazn/kopytko-unit-testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "@dazn/kopytko-unit-testing-framework",
"version": "1.0.4",
"description": "Kopytko Unit Testing Framework",
"scripts": {
"lint": "eslint ./"
},
"keywords": [
"roku",
"brightscript",
"kopytko",
"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>",
"Tomasz Bazelczuk <tbazelczuk@gmail.com>"
],
"license": "MIT",
"files": [
"src",
"packager-steps",
"plugins",
"scripts",
"manifest.js"
],
"repository": {
"type": "git",
"url": "https://github.com/getndazn/kopytko-unit-testing-framework.git"
},
"bugs": {
"url": "https://github.com/getndazn/kopytko-unit-testing-framework/issues"
},
"kopytkoModuleDir": "src/",
"dependencies": {
"fs-extra": "^10.0.0",
"glob-promise": "^4.2.0",
"telnet-client": "^1.4.9",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"eslint": "^8.10.0"
},
"peerDependencies": {
"@dazn/kopytko-packager": "^1.2.3"
},
"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"
]
}
}