roku-debug 0.21.31 → 0.21.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,17 +1,25 @@
1
1
  {
2
- "name": "github",
2
+ "name": "workflows",
3
3
  "version": "1.0.0",
4
- "description": "Host the RokuCommunity Workflows",
5
- "main": "index.js",
4
+ "description": "The RokuCommunity Workflows",
6
5
  "scripts": {
7
- "package": "echo \"Hello World!\" > hello.tgz",
8
- "test": "echo \"Error: no test specified\" && exit 1"
6
+ "preversion": "npm run build && npm run lint && npm run test",
7
+ "build": "rimraf dist && tsc",
8
+ "lint": "eslint \"src/**\"",
9
+ "watch": "tsc --watch",
10
+ "test": "nyc mocha \"src/**/*spec.ts\"",
11
+ "test:nocover": "mocha \"src/**/*.spec.ts\"",
12
+ "package": "npm run build && npm pack"
9
13
  },
10
- "keywords": [],
11
- "author": "",
12
- "license": "ISC",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/rokucommunity/workflows"
17
+ },
18
+ "author": "RokuCommunity",
19
+ "license": "MIT",
13
20
  "dependencies": {
14
21
  "@octokit/rest": "^20.1.1",
22
+ "@vscode/vsce": "^2.22.0",
15
23
  "brighterscript": "^0.69.0",
16
24
  "dotenv": "^16.4.7",
17
25
  "fast-glob": "^3.3.3",
@@ -19,13 +27,73 @@
19
27
  "node-fetch": "^2.7.0",
20
28
  "parse-diff": "^0.11.1",
21
29
  "semver": "^7.6.3",
22
- "yargs": "^17.7.2"
30
+ "yargs": "^17.7.2",
31
+ "ovsx": "^0.8.3",
32
+ "tsx": "^4.19.3"
23
33
  },
24
34
  "devDependencies": {
25
- "@types/yargs": "^17.0.33",
26
- "@vscode/vsce": "^2.22.0",
27
- "ovsx": "^0.8.3",
28
- "ts-node": "^10.9.2",
29
- "typescript": "^5.6.2"
35
+ "@types/chai": "^4.2.22",
36
+ "@types/dateformat": "~3",
37
+ "@types/debounce": "^1.2.1",
38
+ "@types/decompress": "^4.2.4",
39
+ "@types/dedent": "^0.7.0",
40
+ "@types/find-in-files": "^0.5.1",
41
+ "@types/fs-extra": "^9.0.13",
42
+ "@types/glob": "^7.2.0",
43
+ "@types/mocha": "^9.0.0",
44
+ "@types/node": "^16.18.126",
45
+ "@types/request": "^2.48.8",
46
+ "@types/semver": "^7.3.9",
47
+ "@types/sinon": "^10.0.6",
48
+ "@types/yargs": "^15.0.5",
49
+ "@typescript-eslint/eslint-plugin": "^5.27.0",
50
+ "@typescript-eslint/parser": "^5.27.0",
51
+ "chai": "^4.3.4",
52
+ "eslint": "^8.1.0",
53
+ "eslint-plugin-no-only-tests": "^2.6.0",
54
+ "mocha": "^11.1.0",
55
+ "nyc": "^15.1.0",
56
+ "rimraf": "^3.0.2",
57
+ "sinon": "^11.1.2",
58
+ "source-map-support": "^0.5.20",
59
+ "ts-node": "^10.4.0",
60
+ "typescript": "^4.7.2"
61
+ },
62
+ "mocha": {
63
+ "require": [
64
+ "source-map-support/register",
65
+ "ts-node/register"
66
+ ],
67
+ "watchFiles": [
68
+ "src/**/*"
69
+ ],
70
+ "timeout": 2000,
71
+ "fullTrace": true,
72
+ "watchExtensions": [
73
+ "ts"
74
+ ]
75
+ },
76
+ "nyc": {
77
+ "include": [
78
+ "src/**/!(*.spec).ts"
79
+ ],
80
+ "extension": [
81
+ ".ts"
82
+ ],
83
+ "require": [
84
+ "ts-node/register",
85
+ "source-map-support/register"
86
+ ],
87
+ "reporter": [
88
+ "text-summary",
89
+ "html"
90
+ ],
91
+ "sourceMap": true,
92
+ "instrument": true,
93
+ "check-coverage": false,
94
+ "lines": 100,
95
+ "statements": 100,
96
+ "functions": 100,
97
+ "branches": 100
30
98
  }
31
99
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roku-debug",
3
- "version": "0.21.31",
3
+ "version": "0.21.32",
4
4
  "description": "Debug adapter for Roku application development using Node.js",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@
12
12
  "device-test": "mocha --spec \"src/**/*.device.spec.ts\"",
13
13
  "test:nocover": "mocha \"src/**/*.spec.ts\" --exclude \"src/**/*.device.spec.ts\"",
14
14
  "publish-coverage": "nyc report --reporter=text-lcov | coveralls",
15
- "package": "npm ci && npm run build && npm pack"
15
+ "package": "npm run build && npm pack"
16
16
  },
17
17
  "typings": "dist/index.d.ts",
18
18
  "repository": {
@@ -101,7 +101,7 @@
101
101
  "@types/request": "^2.48.8",
102
102
  "@vscode/debugadapter": "^1.68.0",
103
103
  "@vscode/debugprotocol": "^1.68.0",
104
- "brighterscript": "^0.69.6",
104
+ "brighterscript": "^0.69.7",
105
105
  "dateformat": "^4.6.3",
106
106
  "debounce": "^1.2.1",
107
107
  "eol": "^0.9.1",