-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "aout3-samples",
"version": "1.0.0",
"description": "Code Samples for Art of Unit Testing 3rd Edition",
"main": "index.js",
"scripts": {
"test": "jest",
"ch1": "semistandard --fix ch1-basics && node ch1-basics/custom-test-phase1.js && node ch1-basics/custom-test-phase2.js && node ch1-basics/custom-test-phase3.js"
},
"semistandard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/royosherove/aout3-samples.git"
},
"author": "Roy Osherove",
"license": "MIT",
"bugs": {
"url": "https://github.com/royosherove/aout3-samples/issues"
},
"homepage": "https://github.com/royosherove/aout3-samples#readme",
"devDependencies": {
"@fluffy-spoon/substitute": "^1.112.0",
"@hirez_io/observer-spy": "^2.0.0",
"@testing-library/dom": "^7.29.4",
"@types/jest": "^25.1.2",
"@types/nock": "^11.1.0",
"colors": "^1.3.3",
"cypress": "^6.8.0",
"eslint": "^8.23.1",
"jasmine": "^5.1.0",
"jasmine-auto-spies": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jsdom": "^16.4.0",
"nock": "^12.0.3",
"prettier": "2.0.5",
"rxjs": "^6.5.5",
"sinon": "^8.1.1",
"substitute": "^0.7.1",
"testdouble": "^3.12.5",
"testdouble-jest": "^2.0.0",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3",
"unmock": "^0.3.18"
},
"dependencies": {
"fs": "0.0.1-security",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"semistandard": "^13.0.1",
"winston": "^3.2.1"
}
}