This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
forked from atfzl/eslint-plugin-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.56 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
{
"name": "@pager/eslint-plugin-css-modules",
"version": "2.20.0",
"description": "Checks that you are using the existent css/scss/less classes, no more no less",
"main": "build/index.js",
"files": [
"build",
"packages"
],
"scripts": {
"watch": "babel lib -d build --watch",
"build": "rm -rf build && babel lib -d build",
"lint": "eslint lib test",
"test": "mocha 'test/**/*.test.js' --require @babel/register",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"css-modules"
],
"repository": {
"type": "git",
"url": "git://github.com/pagerinc/eslint-plugin-css-modules.git"
},
"license": "MIT",
"peerDependencies": {
"eslint": ">=2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-syntax-flow": "^7.26.0",
"@babel/plugin-transform-flow-strip-types": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@pager/web-semantic-release-config": "^4.1.5",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"flow-bin": "^0.256.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.7"
},
"dependencies": {
"gonzales-pe": "4.3.0",
"lodash": "4.17.21"
}
}