-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 726 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 726 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
{
"name": "javascript-testing",
"version": "1.0.0",
"description": "Introducción al Testing con Javascript",
"main": "funcionesMatematicas.js",
"scripts": {
"test": "node test-1.js && node test-2.js && node test-3.js && node test-4.js",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baumannzone/javascript-testing.git"
},
"author": "Jorge Baumann",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/baumannzone/javascript-testing/issues"
},
"homepage": "https://github.com/baumannzone/javascript-testing#readme",
"devDependencies": {
"jest": "^24.9.0"
},
"jest": {
"testMatch": [
"**/test-5.js"
]
}
}