forked from rkotze/should-enzyme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "should-enzyme",
"version": "0.5.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 -r should --compilers js:babel-core/register src/*spec.js src/**/*spec.js",
"test:lazy": "mocha -r should ./test-setup/jsdom.js -r should --compilers js:babel-core/register src/*spec.js src/**/*spec.js",
"test:w": "npm run js-style && mocha -r should ./test-setup/jsdom.js -r should -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",
"prepublish": "npm run test && 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": {
"type": "MIT",
"url": "https://github.com/rkotze/should-enzyme/blob/master/LICENSE"
},
"author": "Richard Kotze <[email protected]>",
"peerDependencies": {
"should": "8.x || 9.x || 10.x || 11.x",
"cheerio": "0.19.x || 0.20.x || 0.22.x",
"enzyme": "1.x || 2.x"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.7.2",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.11.1",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-google": "^0.6.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.2.2",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"should": "^11.1.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.6"
},
"bugs": {
"url": "https://github.com/rkotze/should-enzyme/issues"
},
"files": [
"lib/*",
"readme.md"
]
}