-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 905 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
{
"name": "js-mentoring-program",
"version": "1.0.0",
"description": "Repository for learning tasks",
"main": "index.js",
"scripts": {
"test:cycles": "mocha tasks/cycles/test/*.spec.js",
"test:functions": "mocha tasks/functions/test/*.spec.js",
"test:arrays": "mocha tasks/arrays/test/*.spec.js",
"test:strings": "mocha tasks/strings/test/*.spec.js",
"test:objects": "mocha tasks/classes/test/objects.spec.js",
"test:classes": "mocha tasks/classes/test/classes.spec.js",
"test:async": "mocha tasks/async/test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://git.epam.com/Dzmitry_Shaplyka/js-mentoring-program.git"
},
"authors": [
"Dzmitry_Shaplyka@epam.com",
"Oleksandr_Halichenko@epam.com"
],
"license": "ISC",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"save": "^2.4.0",
"sinon": "latest"
}
}