-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 926 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 926 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "interview-tasks",
"version": "1.0.0",
"description": "JS tasks from interviews",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rusanoff/interview-tasks.git"
},
"author": "Andrew Rusanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/rusanoff/interview-tasks/issues"
},
"homepage": "https://github.com/rusanoff/interview-tasks#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^26.6.3",
"jest": "^26.6.3"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": []
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}