-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add package.json with eslint dev dependency
- Loading branch information
1 parent
c948e69
commit 34d7b07
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"installedESLint": true, | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true | ||
}, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"mozilla" | ||
], | ||
"rules": { | ||
"mozilla/import-globals-from": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "tab-center", | ||
"version": "1.16.0", | ||
"description": "Tab Center is an attempt to solve some of the issues that have emerged from the way people use tabs (most notably the “too many tabs” problem) and provide a more versatile UI basis for future innovation. The first version of this Firefox add-on arranges tabs in a vertical rather than horizontal fashion. It is heavily inspired by and borrows ideas from the excellent VerticalTabs add-on.", | ||
"main": "bootstrap.js", | ||
"directories": { | ||
"doc": "docs" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"eslint-plugin-mozilla": "0.0.3", | ||
"eslint": "2.9.0" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"eslint": "eslint ." | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bwinton/VerticalTabs.git" | ||
}, | ||
"author": "Mozilla", | ||
"license": "MPL-2.0", | ||
"bugs": { | ||
"url": "https://github.com/bwinton/VerticalTabs/issues" | ||
}, | ||
"homepage": "https://github.com/bwinton/VerticalTabs#readme" | ||
} |