forked from cnumr/ecoLinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "eslint-plugin-greenit",
"version": "1.0.0-SNAPSHOT",
"description": "GreenIT rules for JavaScript and CSS",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"main": "lib/index.js",
"scripts": {
"testjs": "mocha tests --full-trace --recursive ",
"testcss": "npx stylelint \"ressources/*.css\"",
"report": "stylelint ressources/*.css -f json > stylelint-report.json"
},
"files": [
"lib"
],
"dependencies": {
"@babel/eslint-parser": "^7.15.7",
"requireindex": "~1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"eslint": "^7.22.0",
"mocha": "^7.2.0",
"prettier": "2.2.1",
"stylelint": "13.12.0",
"stylelint-config-recommended": "4.0.0",
"stylelint-config-standard": "21.0.0",
"stylelint-group-selectors": "1.0.8"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC"
}