summaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorChristoph Schlosser <2466365+cschlosser@users.noreply.github.com>2021-04-30 16:03:47 +0200
committerGitHub <noreply@github.com>2021-04-30 16:03:47 +0200
commit15f166329f3c8040a8aa3772dbb2fd4614a4a8b2 (patch)
tree5e568c2c73470cdd7fda0cb4eea87c9867eb7697 /package.json
parente5b544978594082190d2edb866470046af6374a5 (diff)
downloaddoxdocgen-15f166329f3c8040a8aa3772dbb2fd4614a4a8b2.tar.gz
Use Github actions instead of travis and appveyor (#216)
* Switch to GH workflow * Use tslint action * Add build matrix * Run test stage * Disable ubuntu test run due to bug in vscode * Publish coverage on macOS * Remove istanbul * codecov action * Move nyc config to nycrc * Add CD workflow * Remove old publishing script
Diffstat (limited to 'package.json')
-rw-r--r--package.json9
1 files changed, 6 insertions, 3 deletions
diff --git a/package.json b/package.json
index 58cbe02..514284c 100644
--- a/package.json
+++ b/package.json
@@ -265,7 +265,9 @@
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "yarn compile && node ./out/test/runTests.js",
- "cov": "rm -rf coverage .nyc_output && nyc yarn test"
+ "cov": "yarn clean && nyc yarn test",
+ "lint": "tslint -c tslint.json 'src/**/*.ts'",
+ "clean": "rm -rf coverage .nyc_output out"
},
"dependencies": {
"env-var": "^4.1.0",
@@ -274,15 +276,16 @@
"simple-git": "^2.38.0"
},
"devDependencies": {
- "@istanbuljs/nyc-config-typescript": "1.0.0",
+ "@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "12.7.1",
"@types/vscode": "^1.55.0",
"decache": "^4.5.1",
+ "glob": "^7.1.6",
"handlebars": "^4.7.3",
"minimist": ">=1.2.2",
"mocha": "^8.3.2",
- "nyc": "13.1.0",
+ "nyc": "12.0.1",
"remap-istanbul": "^0.13.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",