-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "unit-test-examples",
"version": "2.0.0",
"description": "Example code for my talks and workshops on unit testing.",
"keywords": [
"code",
"es6",
"javascript",
"mock",
"mocking",
"patch",
"php",
"test",
"testable",
"testing",
"unit",
"wordpress",
"wp"
],
"homepage": "https://github.com/tfrommen/unit-test-examples",
"bugs": "https://github.com/tfrommen/unit-test-examples/issues",
"license": "MIT",
"author": {
"name": "Thorsten Frommen",
"email": "[email protected]",
"url": "https://tfrommen.de"
},
"repository": {
"type": "git",
"url": "https://github.com/tfrommen/unit-test-examples"
},
"dependencies": {
"react": "^16.3.1",
"react-dom": "^16.3.1"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"jest-each": "^0.3.1",
"react-test-renderer": "^16.3.1"
},
"scripts": {
"test": "jest --watch"
}
}