forked from wellguimaraes/mocha-snapshots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "mocha-snapshots",
"version": "4.2.0",
"description": "Snapshot testing for Mocha users",
"main": "./src/index.js",
"scripts": {
"test": "mocha ./tests/**/**/*.test.js -r ./src/index -r babel-polyfill -r babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellguimaraes/mocha-snapshots.git"
},
"keywords": [
"mocha",
"snapshot",
"regression",
"test",
"testing"
],
"author": "Wellington Guimaraes <wellguimaraes@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellguimaraes/mocha-snapshots/issues"
},
"homepage": "https://github.com/wellguimaraes/mocha-snapshots#readme",
"dependencies": {
"colors": "^1.3.3",
"diff": "^3.5.0",
"enzyme-to-json": "^3.3.5"
},
"peerDependencies": {
"enzyme-adapter-react-16": "^1.0.2",
"react-dom": "^16.0.0",
"react": "^16.0.0",
"mocha": "^4.0.1",
"enzyme": "^3.1.0",
"chai": "^4.1.2"
},
"devDependencies": {
"enzyme-adapter-react-16": "^1.0.2",
"enzyme": "^3.1.0",
"react-dom": "^16.0.0",
"react": "^16.0.0",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0"
}
}