-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "enzyme-react-intl",
"description": "A complimentary wrapper function for use with Enzyme, when testing React components that rely on react-intl.",
"keywords": [
"enzyme-react-intl,mountWithIntl,shallowWithIntl,enzyme,react-intl"
],
"scripts": {
"test": "WEBPACK_ENV=test mocha-webpack",
"build": "WEBPACK_ENV=build webpack --config webpack.config-build.js"
},
"license": "MIT",
"version": "2.0.6",
"bugs": "https://github.com/joetidee/enzyme-react-intl/issues",
"repository": {
"type": "git",
"url": "https://github.com/joetidee/enzyme-react-intl"
},
"main": "lib/enzyme-react-intl.js",
"engines": {
"node": ">=4.2.4"
},
"files": [
"lib/"
],
"module": "lib/",
"dependencies": {},
"peerDependencies": {
"enzyme": "^2.7.1 || ^3.3.0",
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0",
"react-intl": "^2.2.3"
},
"optionalDependencies": {
"jsonfile": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.44",
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44",
"@babel/preset-stage-0": "^7.0.0-beta.44",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.0-beta.0",
"babel-register": "^6.23.0",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.0",
"chai-subset": "^1.6.0",
"enzyme": "^3.4.2",
"jsdom": "^11.12.0",
"mocha": "^5.0.5",
"mocha-webpack": "^1.1.0",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-intl": "^2.2.3",
"sinon": "^1.17.7",
"source-map-support": "^0.4.11",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-node-externals": "^1.7.0"
}
}