-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 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
{
"name": "refactoring-typescript",
"version": "1.0.0",
"description": "Demo Refactoring in TypeScript",
"main": "index.ts",
"scripts": {
"test": "jest",
"test:cover": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnuchitO/refactoring-typescript.git"
},
"keywords": [
"typescript",
"refactoring"
],
"author": "AnuchitO",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnuchitO/refactoring-typescript/issues"
},
"homepage": "https://github.com/AnuchitO/refactoring-typescript#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}