-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.38 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jest-do-it",
"version": "0.1.2",
"description": "Learn to test anything with Jest",
"main": "jest-do-it.js",
"bin": {
"jest-do-it": "./jest-do-it.js"
},
"scripts": {
"test": "standard"
},
"standard": {
"globals": [
"describe",
"it",
"test",
"expect",
"jest",
"fetch",
"beforeEach",
"afterEach"
]
},
"jest": {
"testMatch": [
"**/*.js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/exercises/",
"metatest"
]
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"keywords": [
"nodeschool",
"workshopper",
"learn",
"cli",
"tap"
],
"author": "Stanislas Bernard",
"license": "MIT",
"bugs": {
"url": "https://github.com/bernardstanislas/jest-do-it/issues"
},
"homepage": "https://github.com/bernardstanislas/jest-do-it",
"dependencies": {
"adventure": "^2.11.0",
"adventure-verify": "^2.2.0",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cli-md": "^1.0.0",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"workshopper-exercise": "^2.3.0"
},
"preferGlobal": true,
"devDependencies": {
"standard": "^8.5.0"
}
}