-
Notifications
You must be signed in to change notification settings - Fork 34.6k
/
package.json
41 lines (41 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"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": {
"case-anything": "^2.1.13",
"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",
"plop": "^4.0.1"
},
"engines": {
"npm": ">=8.5.5",
"node": ">=18.0.0"
},
"scripts": {
"test": "jest",
"generate": "plop"
},
"eslintConfig": {
"root": true
},
"jest": {
"testPathIgnorePatterns": [
"generators/"
]
}
}