-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "css-module-loader",
"version": "1.0.0-beta.6",
"main": "lib/loader.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jquense/css-module-loader.git"
},
"author": {
"name": "4Catalyzer"
},
"license": "MIT",
"scripts": {
"format": "4c format src './*'",
"lint": "4c lint src './*'",
"release": "4c release",
"tdd": "jest --watch",
"test": "yarn lint && jest",
"testonly": "jest",
"test:manual": "webpack-dev-server --config example/webpack.config.js --mode development"
},
"publishConfig": {
"access": "public"
},
"prettier": "@4c/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(__file_snapshots__/)*.js": [
"yarn 4c lint --fix"
]
},
"jest": {
"preset": "@4c/jest-preset",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup.js"
],
"watchPathIgnorePatterns": [
"build",
"__file_snapshots__"
]
},
"release": {},
"devDependencies": {
"@4c/cli": "^3.0.1",
"@4c/import-sort": "^4.3.6",
"@4c/jest-preset": "^1.6.2",
"@4c/prettier-config": "^1.1.0",
"css-loader": "^6.5.0",
"eslint": "^7.0.0",
"eslint-config-4catalyzer": "^1.3.0",
"eslint-config-4catalyzer-jest": "^2.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.2.5",
"jest": "^27.3.1",
"jest-file-snapshot": "^0.5.0",
"lint-staged": "^11.2.6",
"memfs": "^3.3.0",
"mini-css-extract-plugin": "^2.4.3",
"prettier": "^2.4.1",
"sass": "^1.26.5",
"strip-ansi": "^6.0.0",
"webpack-atoms": "^17.1.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@modular-css/processor": "^26.0.0",
"cssesc": "^3.0.0",
"fs-extra": "^10.0.0",
"icss-utils": "^5.1.0",
"loader-utils": "^3.1.0",
"lodash": "^4.17.21",
"memory-fs": "^0.5.0",
"postcss": "^8.3.11",
"postcss-selector-parser": "^6.0.6",
"sass-loader": "^12.3.0",
"semver": "^7.3.5",
"webpack": "^5.60.0"
},
"bugs": {
"url": "https://github.com/4Catalyzer/css-module-loader/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/4Catalyzer/css-module-loader#readme",
"_id": "css-module-loader@1.0.0-beta.3"
}