UNPKG

burp-brightscript

Version:

lightweight processor for roku brightscript projects

106 lines (105 loc) 2.45 kB
{ "name": "burp-brightscript", "version": "0.4.2", "description": "lightweight processor for roku brightscript projects", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist/**/!(*.spec.*)*" ], "directories": { "test": "test" }, "dependencies": { "commander": "^2.20.0", "debug": "latest", "fs-extra": "^5.0.0", "glob-all": "^3.1.0", "lodash": "latest", "os": "^0.1.1", "replace-ext": "^1.0.0", "splice-string": "^2.0.0" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/chai-subset": "^1.3.2", "@types/debug": "0.0.31", "@types/fs-extra": "^5.0.5", "@types/glob": "^7.1.1", "@types/lodash": "^4.14.123", "@types/mocha": "^5.2.6", "@types/node": "^10.14.4", "@types/replace-ext": "0.0.27", "babel-cli": "^6.26.0", "babel-core": "^6.26.3", "babel-preset-env": "^1.7.0", "chai": "^4.2.0", "chai-subset": "^1.6.0", "codecov": "^3.2.0", "compare-directories": "^0.1.0", "dir-compare": "^1.7.2", "mocha": "^5.2.0", "node-run-cmd": "^1.0.1", "nyc": "^13.3.0", "ts-mocha": "^6.0.0", "ts-node": "^8.0.3", "tsc": "^1.20150623.0", "tslint": "^5.15.0", "tslint-eslint-rules": "^5.4.0", "tslint-origin-ordered-imports-rule": "^1.2.0", "typescript": "^3.4.1" }, "scripts": { "test": "nyc mocha src/**/*.spec.ts --full-trace --bail", "compile": "tsc -p .", "prepublishOnly": "npm run compile", "tslint": "tslint ./src/**/*.ts", "build-and-test": "npm run compile && npm run test", "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", "publish-npm:beta": "npm publish --tag=next" }, "preferGlobal": true, "bin": { "burp": "dist/cli.js" }, "keywords": [ "brightscript", "scenegraph", "roku", "burp", "preprocessor" ], "author": "George Cook", "license": "MIT", "watch": { "test": { "extensions": "ts", "patterns": [ "src" ] } }, "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": true, "lines": 5, "statements": 5, "functions": 5, "branches": 5 } }