package(-lock).json: Update to include version and repsitory data based on old solution branch
This commit is contained in:
parent
9916e343a3
commit
435c1d3779
File diff suppressed because it is too large
Load Diff
24
package.json
24
package.json
|
@ -1,9 +1,27 @@
|
||||||
{
|
{
|
||||||
|
"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 very simply, 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": {
|
"devDependencies": {
|
||||||
"jest": "^26.6.3",
|
"jest": "^26.6.3",
|
||||||
"jest-cli": "^26.6.3"
|
"jest-cli": "^26.6.3",
|
||||||
|
"eslint": "^7.26.0",
|
||||||
|
"eslint-config-airbnb-base": "^14.2.1",
|
||||||
|
"eslint-plugin-import": "^2.22.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "jest"
|
"test": "jest",
|
||||||
|
"lint" : "./node_modules/.bin/eslint"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue