2021-05-11 02:29:15 +00:00
{
2021-05-10 09:27:55 +00:00
"name" : "javascript-exercises" ,
"version" : "1.0.0" ,
2021-05-11 02:29:15 +00:00
"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" ,
2021-05-10 09:27:55 +00:00
"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" ,
2021-03-03 02:13:24 +00:00
"devDependencies" : {
2021-04-30 09:49:46 +00:00
"jest" : "^26.6.3" ,
2021-05-10 09:27:55 +00:00
"jest-cli" : "^26.6.3" ,
"eslint" : "^7.26.0" ,
"eslint-config-airbnb-base" : "^14.2.1" ,
"eslint-plugin-import" : "^2.22.1"
2021-03-03 02:13:24 +00:00
} ,
"scripts" : {
2021-05-11 02:29:15 +00:00
"test" : "jest"
2021-03-03 02:13:24 +00:00
}
2021-04-30 09:49:46 +00:00
}