forked from TheOdinProject/javascript-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 969 Bytes
/
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
{
"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": {
"jest": "^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": {
"test": "jest"
},
"eslintConfig": {
"root": true
},
"jest": {
"testPathIgnorePatterns": [
"generator-exercise/"
]
}
}