raas-core
Version:
60 lines (59 loc) • 1.24 kB
JSON
{
"name": "raas-core",
"version": "0.3.28",
"description": "raas core",
"keywords": [
"rhamt",
"windup",
"migration",
"jboss"
],
"author": "John Steele",
"repository": {
"type": "git",
"url": "https://github.com/johnsteele/raas-core"
},
"engines": {
"node": "*"
},
"main": "lib/main.js",
"typings": "./lib/main",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"mocha": "^5.2.0",
"typescript": "^3.0.1",
"nyc": "^11.0.2"
},
"dependencies": {
"@types/cheerio": "^0.22.10",
"cheerio": "^1.0.0-rc.2",
"vscode-jsonrpc": "^3.6.2"
},
"scripts": {
"prepare": "npm run build",
"build": "tslint -p tslint.json && tsc",
"test": "nyc mocha --timeout 100000 --exit",
"coverage:upload": "codecov -f coverage/*.json",
"update-deps": "node_modules/.bin/ncu --upgrade --loglevel verbose --packageFile package.json && npm update"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"lib",
"test",
"coverage"
],
"reporter": [
"json",
"html"
],
"all": true
},
"bugs": {
"url": "https://github.com/johnsteele/raas-core/issues"
}
}