Skip to content

Commit

Permalink
more updates for rooibos bsc plugin to work with bsc v1.0.0 and unit …
Browse files Browse the repository at this point in the history
…test fixes
  • Loading branch information
daci committed Apr 9, 2024
1 parent 97bb51f commit a7843d5
Show file tree
Hide file tree
Showing 15 changed files with 493 additions and 469 deletions.
230 changes: 115 additions & 115 deletions bsc-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,120 +1,120 @@
{
"name": "rooibos-roku",
"version": "6.0.0-wip",
"description": "simple, flexible, fun brightscript test framework for roku scenegraph apps - roku brighterscript plugin",
"repository": {
"type": "git",
"url": "https://github.com/georgejecook/rooibos.git"
},
"files": [
"dist/**/!(*.spec.*)*"
"name": "rooibos-roku",
"version": "6.0.0-wip",
"description": "simple, flexible, fun brightscript test framework for roku scenegraph apps - roku brighterscript plugin",
"repository": {
"type": "git",
"url": "https://github.com/georgejecook/rooibos.git"
},
"files": [
"dist/**/!(*.spec.*)*"
],
"main": "dist/plugin.js",
"directories": {
"test": "test"
},
"dependencies": {
"source-map": "^0.7.3",
"undent": "^0.1.0",
"vscode-languageserver": "~6.1.1",
"vscode-languageserver-protocol": "~3.15.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/events": "^3.0.0",
"@types/fs-extra": "^5.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.41",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"brighterscript": "/Users/daci/projects/brighterscript",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"fs-extra": "^10.1.0",
"minimatch": "^3.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"release-it": "^15.10.3",
"source-map-support": "^0.5.13",
"trim-whitespace": "^1.3.3",
"ts-node": "^9.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"clean": "rm -rf ./dist && mkdir dist",
"compile": "npm run clean && tsc -p .",
"prepublishOnly": "npm run build",
"lint": "eslint \"src/**\"",
"build": "npm run compile && cp -r ../framework/src/source ./dist/lib/framework",
"test": "nyc mocha",
"test:nocover": "mocha",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"publish-npm": "npm run test && npm publish",
"publish-npm:beta": "npm run test && npm publish --tag=beta",
"local": "ts-node scripts/install-local.js",
"remote": "ts-node scripts/install-npm.js"
},
"preferGlobal": true,
"keywords": [
"brightscript",
"scenegraph",
"roku",
"rooibos",
"britherscript"
],
"author": "George Cook",
"license": "ISC",
"watch": {
"test": {
"extensions": "ts",
"patterns": [
"src"
]
}
},
"nyc": {
"include": [
"src/**/*.ts",
"!src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"main": "dist/plugin.js",
"directories": {
"test": "test"
},
"dependencies": {
"source-map": "^0.7.3",
"undent": "^0.1.0",
"vscode-languageserver": "~6.1.1",
"vscode-languageserver-protocol": "~3.15.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/events": "^3.0.0",
"@types/fs-extra": "^5.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.41",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"brighterscript": "file:../../vsc/brighterscript",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"fs-extra": "^10.1.0",
"minimatch": "^3.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"release-it": "^15.10.3",
"source-map-support": "^0.5.13",
"trim-whitespace": "^1.3.3",
"ts-node": "^9.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"clean": "rm -rf ./dist && mkdir dist",
"compile": "npm run clean && tsc -p .",
"prepublishOnly": "npm run build",
"lint": "eslint \"src/**\"",
"build": "npm run compile && cp -r ../framework/src/source ./dist/lib/framework",
"test": "nyc mocha",
"test:nocover": "mocha",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"publish-npm": "npm run test && npm publish",
"publish-npm:beta": "npm run test && npm publish --tag=beta",
"local": "ts-node scripts/install-local.js",
"remote": "ts-node scripts/install-npm.js"
},
"preferGlobal": true,
"keywords": [
"brightscript",
"scenegraph",
"roku",
"rooibos",
"britherscript"
"sourceMap": true,
"instrument": true,
"check-coverage": true,
"lines": 5,
"statements": 5,
"functions": 5,
"branches": 5
},
"mocha": {
"spec": "src/**/*.spec.ts",
"fullTrace": true,
"require": [
"source-map-support/register",
"ts-node/register"
],
"author": "George Cook",
"license": "ISC",
"watch": {
"test": {
"extensions": "ts",
"patterns": [
"src"
]
}
},
"nyc": {
"include": [
"src/**/*.ts",
"!src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"check-coverage": true,
"lines": 5,
"statements": 5,
"functions": 5,
"branches": 5
},
"mocha": {
"spec": "src/**/*.spec.ts",
"fullTrace": true,
"require": [
"source-map-support/register",
"ts-node/register"
],
"watchExtensions": [
"ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
"watchExtensions": [
"ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}
Loading

0 comments on commit a7843d5

Please sign in to comment.