-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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": "keepcoding-09-tdd-with-javascript",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"test:list": "jest --listTests",
"test:json": "jest --json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablo-sch/keepcoding-09-TDD-with-javascript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pablo-sch/keepcoding-09-TDD-with-javascript/issues"
},
"homepage": "https://github.com/pablo-sch/keepcoding-09-TDD-with-javascript/docs/#readme",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@types/jest": "^29.5.14",
"babel-jest": "^30.0.0-beta.3",
"jest": "^29.7.0",
"jest-extended": "^5.0.3"
},
"jest": {
"setupFilesAfterEnv": [
"./testSetup.js"
]
},
"dependencies": {
"axios": "^1.9.0"
},
"engines": {
"node": ">=22.15.1",
"npm": ">=11.4.0"
}
}