-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #357 from sir-gon/develop
Develop
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"author": "Gonzalo Diaz <[email protected]>", | ||
"description": "Solutions to the first 100 problems from [Project Euler](https://projecteuler.net/)", | ||
"description": "Algorithm exercises solved in Typescript, running with Jest testing suite. Developed with TDD.", | ||
"license": "MIT", | ||
"main": "src/problem0000-template.ts", | ||
"name": "projecteuler.net", | ||
"name": "algorithm-exercises-ts", | ||
"type": "module", | ||
"version": "1.0.0", | ||
"dependencies": { | ||
|
@@ -33,7 +33,7 @@ | |
"jest:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll", | ||
"style:format": "npx --yes prettier --write 'src/**/*.ts'", | ||
"style:check": "npx --yes prettier --check 'src/**/*.ts'", | ||
"test": "npm run jest:ci", | ||
"test": "jest", | ||
"update-all": "npm install $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo)" | ||
} | ||
} |