-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
91 lines (91 loc) · 2.18 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
{
"name": "chai-enzyme",
"version": "1.0.0-beta.1",
"description": "Chai.js assertions for enzyme",
"homepage": "https://github.com/producthunt/chai-enzyme",
"author": {
"name": "Veselin Todorov",
"email": "[email protected]",
"url": "https://github.com/vesln"
},
"repository": {
"type": "git",
"url": "git://github.com/producthunt/chai-enzyme.git"
},
"bugs": {
"url": "https://github.com/producthunt/chai-enzyme/issues"
},
"main": "build/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"build": "babel src --out-dir build",
"clean": "rimraf build",
"test:lint": "standard --verbose | snazzy",
"test:unit": "cross-env NODE_ENV=test mocha test/**/*.test.js",
"test:watch": "npm run test:unit -- --watch",
"test": "npm run test:lint && npm run test:unit"
},
"peerDependencies": {
"chai": "^3.0.0 || ^4.0.0",
"cheerio": "0.19.x || 0.20.x || 0.22.x || ^1.0.0-0",
"enzyme": "^2.7.0 || ^3.0.0",
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
},
"keywords": [
"javascript",
"shallow rendering",
"shallowRender",
"test",
"reactjs",
"react",
"flux",
"testing",
"test utils",
"assertion helpers",
"tdd",
"mocha",
"chai",
"chaijs",
"enzyme"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^7.1.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.0.0 || ^4.0.0",
"cross-env": "^3.1.4",
"enzyme": "^2.7.0 || ^3.0.0",
"enzyme-adapter-react-15": "^1.0.0",
"jsdom": "^9.1.0",
"mocha": "^3.0.0",
"prop-types": "^15.5.7",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^15.6.2",
"rimraf": "^2.5.0",
"snazzy": "^5.0.0",
"standard": "^8.1.0"
},
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach",
"React",
"expect",
"createTest",
"isEnzyme3"
]
},
"dependencies": {
"html": "^1.0.0"
}
}