-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "jest-css-modules-processor",
"version": "0.0.9",
"description": "realize import css during testing",
"main": "src/index.js",
"scripts": {
"test": "jest --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrKou47/jest-css-modules-processor.git"
},
"keywords": [
"jest",
"jest-plugin",
"jest-css-moudles",
"css-modules"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrKou47/jest-css-modules-processor/issues"
},
"homepage": "https://github.com/MrKou47/jest-css-modules-processor#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"jest": "^23.4.0"
},
"dependencies": {
"generic-names": "^1.0.3",
"glob-to-regexp": "^0.4.0",
"lodash": "^4.17.10",
"postcss": "^6.0.23",
"postcss-modules-extract-imports": "^1.1.0",
"postcss-modules-local-by-default": "^1.2.0",
"postcss-modules-resolve-imports": "^1.3.0",
"postcss-modules-scope": "^1.1.0",
"postcss-modules-values": "^1.3.0"
},
"jestCSSProcessor": {
"generateScopedName": "[name]__[local]___[hash:base64:5]"
},
"jest": {
"testRegex": "/__tests__/.*\\.test\\.js$",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/config\\.spec\\.js$"
],
"transform": {
".+\\.(css|styl|less|sass|scss)$": "<rootDir>/src/index.js"
},
"bail": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}