-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "@jespers/eslint-plugin-css-modules",
"version": "0.2.0",
"license": "MIT",
"description": "ESLint plugin for CSS modules",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"css",
"cssmodules",
"css-modules"
],
"author": {
"name": "Jesper Johansson"
},
"repository": {
"url": "https://github.com/jesperjohansson/eslint-plugin-css-modules"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"postinstall": "yarn link && yarn link \"@jespers/eslint-plugin-css-modules\"",
"release": "tsc && release-it"
},
"dependencies": {
"@typescript-eslint/utils": "^5.59.8",
"css-tree": "^2.3.1"
},
"devDependencies": {
"@types/css-tree": "^2.3.1",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"release-it": "^15.10.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}