-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 848 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 848 Bytes
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
{
"name": "javascript-exercises",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"testObjects": "jest /objects/exercises/",
"testObjectsSolutions": "jest /objects/solutions/",
"testArrays": "jest /arrays/exercises/",
"testArraysSolutions": "jest /arrays/solutions/",
"lint": "eslint \"*/**\""
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/*.(test|spec).{js,jsx,ts,tsx}"
],
"moduleFileExtensions": [
"js",
"html"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-jest": "^27.4.5",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.5"
}
}