-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.37 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
{
"name": "should-enzyme",
"version": "2.1.0",
"description": "Useful functions for testing React components with Enzyme and Shouldjs",
"scripts": {
"assert-imports": "node test-setup/assert-imports.js",
"test": "npm run assert-imports && npm run js-style && mocha -r should ./test-setup/jsdom.js --compilers js:babel-core/register src/*spec.js src/**/*spec.js",
"test:lazy": "mocha -r should ./test-setup/jsdom.js --compilers js:babel-core/register src/*spec.js src/**/*spec.js",
"test:w": "npm run js-style && mocha -r should ./test-setup/jsdom.js -w --compilers js:babel-core/register src/*spec.js src/**/*spec.js",
"js-style": "eslint ./src/",
"js-style-fix": "eslint ./src/ --fix",
"compile": "babel -d lib/ src/ --ignore *spec.js",
"prepublishOnly": "npm run test",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/rkotze/should-enzyme"
},
"keywords": [
"shallow rendering",
"shallow",
"react rendering",
"reactjs",
"flux",
"testing",
"test utils",
"assertion helpers",
"tdd",
"bdd",
"react",
"enzyme",
"should",
"assert",
"test",
"mocha"
],
"main": "lib/index.js",
"license": "MIT",
"author": "Richard Kotze <[email protected]>",
"peerDependencies": {
"should": "^8 || ^9 || ^10 || ^11 || ^12 || ^13",
"cheerio": "^0.19 || ^0.20 || ^0.22 || ^1.0.0-0",
"enzyme": "^1.0.0 || ^2.0.0 || ^3.0.0"
},
"dependencies": {
"react-element-to-jsx-string": "^13.2.0"
},
"devDependencies": {
"ajv": "^5.5.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cheerio": "^1.0.0-rc.2",
"colors": "^1.2.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-react": "^7.7.0",
"jsdom": "^11.10.0",
"mocha": "^5.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"should": "^13.2.1",
"should-sinon": "0.0.5",
"sinon": "^1.17.7"
},
"bugs": {
"url": "https://github.com/rkotze/should-enzyme/issues"
},
"files": [
"lib/*",
"readme.md"
]
}