-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 869 Bytes
/
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
{
"name": "eslint-plugin-editorconfig",
"version": "1.0.0",
"description": "ESLint plugin for generating a configuration automatically based on a repository's editorconfig.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "npm run lint && npm run unittest",
"unittest": "mocha \"tests/**/*.js\""
},
"repository": "https://github.com/platinumazure/eslint-plugin-editorconfig.git",
"author": "Kevin Partington <[email protected]>",
"license": "MIT",
"dependencies": {
"editorconfig": "^0.15.3",
"glob": "^7.1.2"
},
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.3.0",
"require-uncached": "^2.0.0"
},
"engines": {
"node": "10.x || 12.x || 13.x || >=14.0.0"
}
}