-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "eslint-plugin-react-css-module-hints",
"version": "1.0.1",
"description": "The plugin's goal is to warn you when you import a css/scss module and then attempt to use a class which does not exist there. Pretty simple, it addition it will provide a list of all available classes from that module in hints, so that you can fix the problem.",
"main": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --no-splitting --minify",
"dev": "nodemon",
"lint": "eslint */**/*.ts --quiet --fix",
"test": "jest"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"lint",
"react",
"css-modules",
"style",
"css",
"scss"
],
"author": {
"name": "Volodymyr Yepishev",
"email": "yepishevv@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bwca/eslint-plugin-react-css-modules.git"
},
"bugs": {
"url": "https://github.com/Bwca/eslint-plugin-react-css-modules/issues"
},
"homepage": "https://github.com/Bwca/eslint-plugin-react-css-modules#readme",
"devDependencies": {
"@types/eslint": "^7.2.7",
"@types/estree": "0.0.46",
"@types/jest": "^25.2.2",
"@types/sass": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"nodemon": "^2.0.7",
"prettier": "2.0.5",
"ts-jest": "^26.0.0",
"tsup": "^4.8.17",
"typescript": "^4.2.3"
},
"dependencies": {
"sass": "^1.32.8"
}
}