-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "@woowacourse/mission-utils",
"version": "2.1.1",
"main": "dist/mission-utils.js",
"type": "module",
"exports": {
".": {
"require": "./dist/mission-utils.cjs",
"import": "./dist/mission-utils.js"
}
},
"license": "MIT",
"scripts": {
"test": "jest --detectOpenHandles --watch",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"babel-loader": "^8.2.2",
"jest": "29.6.0",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"description": "Utility library for mission",
"repository": {
"type": "git",
"url": "git+https://github.com/woowacourse-projects/javascript-mission-utils.git"
},
"author": "woowacourse",
"bugs": {
"url": "https://github.com/woowacourse-projects/javascript-mission-utils/issues"
},
"homepage": "https://github.com/woowacourse-projects/javascript-mission-utils#readme",
"engineStrict": true,
"engines": {
"npm": ">=9.6.7",
"node": ">=18.17.1"
}
}