-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.49 KB
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-css-modules-example",
"version": "1.0.0",
"description": "Jest & CSS Modules example",
"scripts": {
"start": "node server.js",
"test": "jest"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/keyanzhang/jest-css-modules-example.git"
},
"keywords": [],
"author": "Keyan Zhang <root@keyanzhang.com> (http://keya.nz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keyanzhang/jest-css-modules-example/issues"
},
"homepage": "https://github.com/keyanzhang/jest-css-modules-example",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-jest": "^16.0.0",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^16.0.0",
"json-loader": "^0.5.4",
"react-test-renderer": "^15.3.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"testEnvironment": "node",
"moduleNameMapper": {
"^.+\\.css$": "identity-obj-proxy",
"^.+\\.(ico|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js"
}
}
}