-
- Downloads
Initial commit.
parents
No related branches found
No related tags found
Showing
- homework-4/src/texMath.js 23 additions, 0 deletionshomework-4/src/texMath.js
- homework-4/src/texMath.test.js 160 additions, 0 deletionshomework-4/src/texMath.test.js
- homework-4/src/volume.js 37 additions, 0 deletionshomework-4/src/volume.js
- homework-4/src/volume.test.js 220 additions, 0 deletionshomework-4/src/volume.test.js
- homework-4/src/worker.js 18 additions, 0 deletionshomework-4/src/worker.js
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 30 additions, 0 deletionspackage.json
homework-4/src/texMath.js
0 → 100644
homework-4/src/texMath.test.js
0 → 100644
homework-4/src/volume.js
0 → 100644
homework-4/src/volume.test.js
0 → 100644
homework-4/src/worker.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "@unlcsce/homework-4", | |||
"version": "1.0.0", | |||
"description": "Starter code for Homework 4.", | |||
"private": true, | |||
"license": "UNLICENSED", | |||
"scripts": { | |||
"postinstall:eslint-config": "cd eslint-config && npm install", | |||
"postinstall:app": "cd homework-4 && npm install", | |||
"postinstall": "run-s postinstall:**", | |||
"lint:app": "cd homework-4 && npm run lint", | |||
"lint": "run-s --continue-on-error lint:**", | |||
"test-once:search": "cd homework-4 && npm run test-once:search", | |||
"test-once:texMath": "cd homework-4 && npm run test-once:texMath", | |||
"test-once:volume": "cd homework-4 && npm run test-once:volume", | |||
"test-once:downtime": "cd homework-4 && npm run test-once:downtime", | |||
"test-once:calculator": "cd homework-4 && npm run test-once:calculator", | |||
"test-once": "cd homework-4 && npm run test-once", | |||
"test": "run-s test-once" | |||
}, | |||
"devDependencies": { | |||
"ghooks": "^2.0.4", | |||
"npm-run-all": "^4.1.5" | |||
}, | |||
"config": { | |||
"ghooks": { | |||
"pre-commit": "npm run lint" | |||
} | |||
} | |||
} |
Please register or sign in to comment