-
Notifications
You must be signed in to change notification settings - Fork 842
/
package.json
44 lines (44 loc) · 1012 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
35
36
37
38
39
40
41
42
43
44
{
"name": "javascript-baseball",
"version": "1.0.0",
"description": "우아한테크코스 프리코스 숫자 야구 게임 미션",
"type": "module",
"dependencies": {
"@woowacourse/mission-utils": "2.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"babel-jest": "^29.7.0",
"jest": "29.6.0"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woowacourse-precourse/javascript-baseball.git"
},
"keywords": [],
"author": "woowacourse",
"license": "MIT",
"bugs": {
"url": "https://github.com/woowacourse-precourse/javascript-baseball/issues"
},
"homepage": "https://github.com/woowacourse-precourse/javascript-baseball#readme",
"engineStrict": true,
"jest": {
"transform": {
"\\.js$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"engines": {
"npm": ">=9.6.7",
"node": ">=18.17.1"
}
}