-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "ts-mocking-exercises",
"version": "1.0.0",
"description": "The aim of this exercise is to use various mocking techniques to successfully write unit tests for the provided code examples.",
"main": "index.js",
"scripts": {
"test": "npm run test-jest && npm run test-mocha && npm run test-jasmine",
"test-jest": "jest",
"test-mocha": "ts-mocha src/**/*.test.ts --require mocha_setup.js",
"test-jasmine": "ts-node --project ./tsconfig.json node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/jasmine": "^3.6.7",
"@types/mocha": "^8.2.2",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"@types/uuid": "8.3.0",
"chai": "4.3.0",
"jasmine": "^3.7.0",
"jest": "^26.6.3",
"mocha": "^8.3.0",
"sinon": "9.2.4",
"sinon-chai": "3.5.0",
"ts-jest": "^26.4.4",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1"
}
}