-
- Downloads
Initial commit.
Showing
- .gitattributes 2 additions, 0 deletions.gitattributes
- .gitignore 23 additions, 0 deletions.gitignore
- .gitmodules 3 additions, 0 deletions.gitmodules
- README.md 77 additions, 0 deletionsREADME.md
- eslint-config 1 addition, 0 deletionseslint-config
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 29 additions, 0 deletionspackage.json
- tests-only-starter-code.code-workspace 15 additions, 0 deletionstests-only-starter-code.code-workspace
- tests-only/.gitignore 23 additions, 0 deletionstests-only/.gitignore
- tests-only/package-lock.json 0 additions, 0 deletionstests-only/package-lock.json
- tests-only/package.json 39 additions, 0 deletionstests-only/package.json
- tests-only/src/helloWorld.js 3 additions, 0 deletionstests-only/src/helloWorld.js
- tests-only/src/helloWorld.test.js 7 additions, 0 deletionstests-only/src/helloWorld.test.js
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitmodules
0 → 100644
README.md
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "@unlsoft/tests-only", | ||
"version": "1.0.0", | ||
"description": "A project skeleton to be used as starter code for labs and homework.", | ||
"private": true, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"postinstall:eslint-config": "cd eslint-config && npm install", | ||
"postinstall:app": "cd tests-only && npm install", | ||
"postinstall": "run-s postinstall:**", | ||
"lint:app": "cd tests-only && npm run lint", | ||
"lint": "run-s --continue-on-error lint:**", | ||
"test-once:app": "cd tests-only && npm run test-once", | ||
"test-once": "run-s --continue-on-error test-once:**", | ||
"test": "run-s test-once", | ||
"start": "cd tests-only && npm run start", | ||
"build:app": "cd tests-only && npm run build", | ||
"build": "run-s build:**" | ||
}, | ||
"devDependencies": { | ||
"ghooks": "^2.0.4", | ||
"npm-run-all": "^4.1.5" | ||
}, | ||
"config": { | ||
"ghooks": { | ||
"pre-commit": "npm run lint" | ||
} | ||
} | ||
} |
tests-only-starter-code.code-workspace
0 → 100644
tests-only/.gitignore
0 → 100644
tests-only/package-lock.json
0 → 100644
This diff is collapsed.
tests-only/package.json
0 → 100644
tests-only/src/helloWorld.js
0 → 100644
tests-only/src/helloWorld.test.js
0 → 100644
Please register or sign in to comment