-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "jest-issue",
"version": "1.0.0",
"description": "Jest not working with react-css-modules",
"main": "index.js",
"dependencies": {
"react": "^15.1.0",
"react-css-modules": "^3.7.6",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-jest": "^13.0.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"identity-obj-proxy": "^2.0.0",
"jest-cli": "^13.0.0",
"react-addons-test-utils": "^15.1.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"test": "jest",
"start": "webpack-dev-server"
},
"jest": {
"moduleNameMapper": {
"^.+\\.css$": "../../__mocks__/style.js"
},
"unmockedModulePathPatterns": [
"../node_modules/react/",
"../node_modules/react-dom/",
"../node_modules/react-addons-test-utils/"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/grrseguin/jest-N-react-css-modules.git"
},
"keywords": [
"jest",
"react-css-modules"
],
"author": "Guillaume Seguin",
"license": "ISC",
"bugs": {
"url": "https://github.com/grrseguin/jest-N-react-css-modules/issues"
},
"homepage": "https://github.com/grrseguin/jest-N-react-css-modules#readme"
}