forked from ruudandriessen/eslint-plugin-modules-newline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 958 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 958 Bytes
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
{
"name": "@spence1115/eslint-plugin-modules-newlines",
"version": "1.0.0",
"description": "Enforce placing import or export variables on a newline. Forked from https://github.com/ruudandriessen/eslint-plugin-modules-newline",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"import",
"export",
"newline"
],
"author": "Richard Spenceley",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/spence1115/eslint-plugin-modules-newline.git"
},
"homepage": "https://github.com/spence1115/eslint-plugin-modules-newline#readme",
"scripts": {
"test": "mocha tests --recursive"
},
"dependencies": {
"requireindex": "~1.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": "^4.2.3",
"mocha": "^3.1.2"
},
"engines": {
"node": ">=0.10.0"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
},
"license": "ISC"
}