forked from Ma27/eslint-plugin-varspacing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 785 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
32
33
{
"name": "eslint-plugin-varspacing",
"version": "1.1.0",
"description": "A eslint rule for proper var spacing",
"main": "index.js",
"scripts": {
"test": "mocha ./test/lib/rules --reporter dot",
"lint": "eslint ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ma27/eslint-plugin-varspacing.git"
},
"keywords": [
"ESLint",
"Plugin",
"Variable",
"Alignment"
],
"author": "Maximilian Bosch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ma27/eslint-plugin-varspacing/issues"
},
"homepage": "https://github.com/Ma27/eslint-plugin-varspacing#readme",
"devDependencies": {
"eslint": "^2.6.0",
"mocha": "^2.4.5"
},
"engines": {
"node": ">=6.0.0"
}
}