-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 779 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
{
"name": "javascript-katas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jotamusik/javascript-katas.git"
},
"author": "Jorge Aguiar Martín",
"license": "ISC",
"bugs": {
"url": "https://github.com/jotamusik/javascript-katas/issues"
},
"homepage": "https://github.com/jotamusik/javascript-katas#readme",
"dependencies": {
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}