2021-03-03 15:13:24 +13:00
{
"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" : {
2024-02-18 12:56:51 -05:00
"case-anything" : "^2.1.13" ,
2023-08-24 21:28:42 -05:00
"eslint" : "^8.47.0" ,
"eslint-config-airbnb-base" : "^15.0.0" ,
"eslint-plugin-import" : "^2.28.1" ,
"jest" : "^29.6.4" ,
2024-02-18 12:44:48 -05:00
"jest-cli" : "^29.6.4" ,
"plop" : "^4.0.1"
2021-03-03 15:13:24 +13:00
} ,
2024-06-04 13:56:14 +05:30
"engines" : {
"npm" : ">=8.5.5" ,
"node" : ">=18.0.0"
} ,
2021-03-03 15:13:24 +13:00
"scripts" : {
2024-02-18 12:44:48 -05:00
"test" : "jest" ,
"generate" : "plop"
2021-03-03 15:13:24 +13:00
} ,
"eslintConfig" : {
"root" : true
2021-05-18 12:26:46 +12:00
} ,
2023-08-24 21:28:42 -05:00
"jest" : {
2021-05-18 12:26:46 +12:00
"testPathIgnorePatterns" : [
2024-02-18 12:44:48 -05:00
"generators/"
2021-05-18 12:26:46 +12:00
]
2021-03-03 15:13:24 +13:00
}
}