-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "unexpected-reaction",
"version": "3.3.0",
"description": "An Unexpected plugin to make React testing with unexpected-dom more convenient",
"main": "./lib/index.js",
"files": [
"lib",
"unexpected-reaction.js"
],
"scripts": {
"build": "babel --out-dir lib --quiet src && rollup -c",
"build-tests": "babel --out-dir build --quiet test/index.spec.js",
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"prepublishOnly": "npm run build",
"test": "npm run test-node",
"test-browser": "npm run build && npm run build-tests && karma start --single-run --browsers ${BROWSER:-ChromeHeadless}",
"test-browser-ie11": "BROWSER=ie11 npm run test-browser",
"test-docs": "evaldown --config ./evaldown.config.js --validate --reporter spec ./documentation",
"test-node": "mocha",
"test-jest": "jest",
"test-headless": "npm run test-browser",
"generate-site": "generate-site --config ./evaldown.config.js",
"update-examples": "evaldown --config ./evaldown.config.js --inplace ./documentation",
"deploy-site": "deploy-site"
},
"bugs": "https://github.com/unexpectedjs/unexpected-reaction",
"repository": {
"type": "git",
"url": "https://github.com/unexpectedjs/unexpected-reaction"
},
"keywords": [
"unexpected",
"plugin",
"react",
"testing",
"DOM"
],
"author": "Sune Simonsen <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^5.0.0",
"evaldown": "^1.4.0",
"jest": "^23.6.0",
"jsdom": "^16.0.0",
"karma": "^6.3.9",
"karma-browserstack-launcher": "^1.4.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^2.0.0",
"magicpen-prism": "^5.0.0",
"mocha": "^8.2.0",
"mocha-dominate": "^1.0.0",
"prettier": "~2.4.0",
"prop-types": "^15.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"serve": "^13.0.2",
"sinon": "^12.0.1",
"unexpected": "^13.2.1",
"unexpected-documentation-site-generator": "^8.1.2",
"unexpected-dom": "^6.0.1",
"unexpected-markdown": "^6.0.1",
"unexpected-sinon": "^11.1.0",
"unexpected-snapshot": "^2.2.0"
},
"dependencies": {
"react-dom-testing": "^1.12.0"
},
"peerDependencies": {
"magicpen-prism": "4 | 5",
"react": "^15.5.4 || 16 || 17 || 18",
"react-dom": "^15.5.4 || 16 || 17 || 18",
"unexpected": "^10.40.0 || ^11.12.1 || ^12.0.0 || 13",
"unexpected-dom": "^4.17.0 || ^5.0.0 || 6"
}
}