Merge pull request #715 from mapbox/eslint
Add basic eslint configuration
Showing
.eslintrc.js
0 → 100644
| ... | ... | @@ -8,10 +8,10 @@ |
| "url": "https://mapbox.com/" | ||
| }, | ||
| "binary": { | ||
| "module_name" : "node_sqlite3", | ||
| "module_path" : "./lib/binding/{node_abi}-{platform}-{arch}", | ||
| "host" : "https://mapbox-node-binary.s3.amazonaws.com", | ||
| "remote_path" : "./{name}/v{version}/{toolset}/", | ||
| "module_name": "node_sqlite3", | ||
| "module_path": "./lib/binding/{node_abi}-{platform}-{arch}", | ||
| "host": "https://mapbox-node-binary.s3.amazonaws.com", | ||
| "remote_path": "./{name}/v{version}/{toolset}/", | ||
| "package_name": "{node_abi}-{platform}-{arch}.tar.gz" | ||
| }, | ||
| "contributors": [ | ||
| ... | ... | @@ -44,11 +44,12 @@ |
| "node-pre-gyp" | ||
| ], | ||
| "devDependencies": { | ||
| "mocha": "3.x", | ||
| "aws-sdk": "2.x" | ||
| "aws-sdk": "2.x", | ||
| "eslint": "3.5.0", | ||
| "mocha": "3.x" | ||
| }, | ||
| "scripts": { | ||
| "prepublish":"npm ls", | ||
| "prepublish": "npm ls", | ||
| "install": "node-pre-gyp install --fallback-to-build", | ||
| "pretest": "node test/support/createdb.js", | ||
| "test": "mocha -R spec --timeout 480000" | ||
| ... | ... |
Please
register
or
sign in
to comment