-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
45 lines (45 loc) · 1015 Bytes
/
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
38
39
40
41
42
43
44
45
{
"name": "testing-zero-to-hero",
"version": "2.0.0",
"description": "Testing Zero to Hero Workshop",
"main": "src/main.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"start": "node src/main.js",
"test": "mocha tests/**/**.test.js",
"test:unit": "mocha tests/1_unit_tests",
"test:api": "mocha tests/2_api_tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shiling/testing-zero-to-hero.git"
},
"keywords": [
"testing",
"unit-testing",
"api-testing",
"mocha",
"chai-http",
"selenium",
"webdriver"
],
"author": "Tai Shi Ling",
"license": "MIT",
"bugs": {
"url": "https://github.com/shiling/testing-zero-to-hero/issues"
},
"homepage": "https://github.com/shiling/testing-zero-to-hero#readme",
"dependencies": {
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"fastify": "^4.20.0",
"mocha": "^10.2.0"
},
"type": "module",
"engines": {
"node": "18.x"
}
}