Adding forgotten package.json files

facepalm
This commit is contained in:
NetMan 2024-01-05 20:29:37 +01:00
parent 72e20f12ea
commit f679ae58ad
2 changed files with 5592 additions and 0 deletions

5558
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

34
package.json Normal file
View File

@ -0,0 +1,34 @@
{
"name": "javascript-exercises",
"version": "1.0.0",
"description": "These are a series of javascript exercises intended to be used alongside the curriculum at 'The Odin Project' They start off nice and easy, but get more involved as you progress through them.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TheOdinProject/javascript-exercises.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheOdinProject/javascript-exercises/issues"
},
"homepage": "https://github.com/TheOdinProject/javascript-exercises#readme",
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.4",
"jest-cli": "^29.6.4"
},
"scripts": {
"test": "jest"
},
"eslintConfig": {
"root": true
},
"jest": {
"testPathIgnorePatterns": [
"generator-exercise/"
]
}
}