-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 892 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 892 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
{
"_comment": "파일 역할: 프로젝트 메타데이터와 스크립트/의존성 정의(NPM이 해석)",
"name": "webclass",
"version": "1.0.0",
"description": "```bash npm init -y ```",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "Dowan Kim",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dowankim1024/WebApplcationProgrammingClass.git"
},
"bugs": {
"url": "https://github.com/dowankim1024/WebApplcationProgrammingClass/issues"
},
"homepage": "https://github.com/dowankim1024/WebApplcationProgrammingClass#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.1",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
}
}