forked from joetidee/enzyme-react-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"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": {
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch --config webpack.config-dev.js",
"test": "WEBPACK_ENV=test mocha-webpack",
"build": "WEBPACK_ENV=build webpack --config webpack.config-build.js"
},
"license": "MIT",
"version": "1.4.5",
"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": {
"jsonfile": "^2.4.0"
},
"peerDependencies": {
"enzyme": "^2.7.1",
"react": "^15.4.1",
"react-dom": "^15.4.2",
"react-intl": "^2.2.3"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chai-subset": "^1.4.0",
"enzyme": "^2.7.1",
"jsdom": "^9.11.0",
"jsonfile": "^2.4.0",
"mocha": "^3.2.0",
"mocha-webpack": "^0.7.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-intl": "^2.2.3",
"sinon": "^1.17.7",
"source-map-support": "^0.4.11",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
}
}