-
- Downloads
Add CI pipeline
Showing
- .gitignore 1 addition, 1 deletion.gitignore
- .gitlab-ci.yml 49 additions, 0 deletions.gitlab-ci.yml
- .vscodeignore 2 additions, 0 deletions.vscodeignore
- LICENSE 21 additions, 0 deletionsLICENSE
- README.md 0 additions, 10 deletionsREADME.md
- package-lock.json 2108 additions, 86 deletionspackage-lock.json
- package.json 7 additions, 2 deletionspackage.json
.gitlab-ci.yml
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
... | ... | @@ -3,6 +3,8 @@ |
"displayName": "CUTE Testing", | ||
"description": "VS Code support for the CUTE testing framework", | ||
"version": "0.0.1", | ||
"homepage": "https://cute-test.com/", | ||
"repository": "https://gitlab.ost.ch/cute-extension-for-vs-code/cute-extension", | ||
"engines": { | ||
"vscode": "^1.66.0" | ||
}, | ||
... | ... | @@ -83,7 +85,9 @@ |
"watch": "tsc -watch -p ./", | ||
"pretest": "npm run compile && npm run lint", | ||
"lint": "eslint src --ext ts", | ||
"test": "node ./out/test/runTest.js" | ||
"test": "node ./out/test/runTest.js", | ||
"package": "vsce package" | ||
}, | ||
"devDependencies": { | ||
"@types/glob": "^7.2.0", | ||
... | ... | @@ -97,7 +101,8 @@ |
"eslint": "^8.6.0", | ||
"glob": "^7.2.0", | ||
"mocha": "^9.1.3", | ||
"typescript": "^4.5.4" | ||
"typescript": "^4.5.4", | ||
"vsce": "^2.7.0" | ||
}, | ||
"dependencies": { | ||
"@types/uuid": "^8.3.4", | ||
... | ... |
Please register or sign in to comment