Skip to content

Commit

Permalink
add package.json with eslint dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ericawright committed May 11, 2016
1 parent c948e69 commit 34d7b07
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.json
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
}
}
28 changes: 28 additions & 0 deletions package.json
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"
}

0 comments on commit 34d7b07

Please sign in to comment.