-
- Downloads
Initial commit.
parents
No related branches found
No related tags found
Showing
- .gitattributes 2 additions, 0 deletions.gitattributes
- .gitignore 23 additions, 0 deletions.gitignore
- .gitmodules 3 additions, 0 deletions.gitmodules
- README.md 64 additions, 0 deletionsREADME.md
- development-environment-homework.code-workspace 15 additions, 0 deletionsdevelopment-environment-homework.code-workspace
- development-environment-homework/.gitignore 23 additions, 0 deletionsdevelopment-environment-homework/.gitignore
- development-environment-homework/package-lock.json 0 additions, 0 deletionsdevelopment-environment-homework/package-lock.json
- development-environment-homework/package.json 39 additions, 0 deletionsdevelopment-environment-homework/package.json
- development-environment-homework/src/helloWorld.js 3 additions, 0 deletionsdevelopment-environment-homework/src/helloWorld.js
- development-environment-homework/src/helloWorld.test.js 7 additions, 0 deletionsdevelopment-environment-homework/src/helloWorld.test.js
- eslint-config 1 addition, 0 deletionseslint-config
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 26 additions, 0 deletionspackage.json
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitmodules
0 → 100644
README.md
0 → 100644
development-environment-homework/.gitignore
0 → 100644
This diff is collapsed.
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "@unlsoft/development-environment-homework", | ||
"version": "1.0.0", | ||
"description": "A minimal project used to check students' development environments.", | ||
"private": true, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"postinstall:eslint-config": "cd eslint-config && npm install", | ||
"postinstall:app": "cd development-environment-homework && npm install", | ||
"postinstall": "run-s postinstall:**", | ||
"lint:app": "cd development-environment-homework && npm run lint", | ||
"lint": "run-s --continue-on-error lint:**", | ||
"test-once:app": "cd development-environment-homework && npm run test-once", | ||
"test-once": "run-s --continue-on-error 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