forked from dshaplyko/js-mentoring-program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.19 KB
/
package.json
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
{
"name": "js-mentoring-program",
"version": "1.8.0",
"description": "JavaScript Mentoring Program",
"scripts": {
"test:intro": "mocha tasks/introduction/*.spec.js",
"test:variables": "mocha tasks/variables/test/*.spec.js",
"test:cycles": "mocha tasks/cycles/test/*.spec.js",
"test:condition": "mocha tasks/condition/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/oop/test/objects.spec.js",
"test:classes": "mocha tasks/oop/test/classes.spec.js",
"test:po": "mocha tasks/oop/test/po.spec.js",
"test:async": "mocha tasks/async/test/*.spec.js",
"test:nodejs": "mocha tasks/nodeJs/test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://git.epam.com/Dzmitry_Shaplyka/js-mentoring-program.git"
},
"authors": [
],
"license": "EPAM Systems",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"node-fetch": "^2.6.0",
"sinon": "latest"
},
"engines": {
"node": ">=14"
}
}