forked from develup-mission/javascript-order
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 KB
/
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
45
46
47
{
"name": "javascript-order",
"version": "1.0.0",
"description": "자바스크립트로 구현하는 주문 미션",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/develup-mission/javascript-order.git"
},
"keywords": [
"javascript"
],
"author": "brgndyy",
"license": "MIT",
"bugs": {
"url": "https://github.com/develup-mission/javascript-order/issues"
},
"homepage": "https://github.com/develup-mission/javascript-order#readme",
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-jest": "^29.6.0",
"jest": "^29.7.0"
},
"dependencies": {
"@woowacourse/mission-utils": "^2.2.0"
},
"jest": {
"transform": {
"\\.js$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"engines": {
"npm": ">=10.8.2",
"node": ">=20.17.0"
}
}