-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.88 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "roku-debug",
"version": "0.23.5",
"description": "Debug adapter for Roku application development using Node.js",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preversion": "npm run build && npm run lint && npm run test",
"lint": "eslint \"src/**\"",
"watch": "tsc --watch",
"test": "nyc mocha \"src/**/*spec.ts\" --exclude \"src/**/*.device.spec.ts\"",
"device-test": "mocha --spec \"src/**/*.device.spec.ts\"",
"test:nocover": "mocha \"src/**/*.spec.ts\" --exclude \"src/**/*.device.spec.ts\"",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"package": "npm run build && npm pack"
},
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rokucommunity/roku-debug"
},
"bin": {
"roku-debug": "dist/cli.js"
},
"author": "RokuCommunity",
"license": "MIT",
"mocha": {
"require": [
"source-map-support/register",
"ts-node/register"
],
"watchFiles": [
"src/**/*"
],
"timeout": 2000,
"fullTrace": true,
"watchExtensions": [
"ts"
]
},
"nyc": {
"include": [
"src/**/!(*.spec).ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"check-coverage": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/dateformat": "~3",
"@types/debounce": "^1.2.1",
"@types/decompress": "^4.2.4",
"@types/dedent": "^0.7.0",
"@types/find-in-files": "^0.5.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.126",
"@types/request": "^2.48.8",
"@types/semver": "^7.3.9",
"@types/sinon": "^10.0.6",
"@types/ws": "^8.18.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.4",
"coveralls-next": "^4.2.0",
"decompress": "^4.2.1",
"dedent": "^0.7.0",
"eslint": "^8.1.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"get-port": "^5.1.1",
"mocha": "^11.1.0",
"nyc": "^15.1.0",
"p-defer": "^4.0.0",
"rimraf": "^3.0.2",
"rmfr": "^2.0.0",
"rxjs": "^7.4.0",
"sinon": "^11.1.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.4.0",
"typescript": "^4.7.2",
"undent": "^1.0.0"
},
"dependencies": {
"@rokucommunity/logger": "^0.3.11",
"@types/request": "^2.48.8",
"@vscode/debugadapter": "^1.68.0",
"@vscode/debugprotocol": "^1.68.0",
"brighterscript": "^0.71.1",
"dateformat": "^4.6.3",
"debounce": "^1.2.1",
"eol": "^0.9.1",
"eventemitter3": "^4.0.7",
"fast-glob": "^3.2.11",
"find-in-files": "^0.5.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"natural-orderby": "^2.0.3",
"portfinder": "^1.0.32",
"postman-request": "^2.88.1-postman.40",
"replace-in-file": "^6.3.2",
"replace-last": "^1.2.6",
"roku-deploy": "^3.16.5",
"semver": "^7.5.4",
"serialize-error": "^8.1.0",
"smart-buffer": "^4.2.0",
"source-map": "^0.7.4",
"telnet-client": "^1.4.9",
"ws": "^8.18.3",
"xml2js": "^0.5.0",
"yargs": "^16.2.0"
}
}