-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from kibertoad/chore/update-dependencies
Update dependencies. Replace JSHint with ESLint. Remove grunt
- Loading branch information
Showing
8 changed files
with
509 additions
and
580 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,15 @@ | ||
{ | ||
"env": { | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 5, | ||
"sourceType": "script" | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"no-empty": "off", | ||
"no-unused-vars": "off" | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -15,25 +15,27 @@ | |
"test": "tests" | ||
}, | ||
"scripts": { | ||
"test": "nyc mocha tests/*.js" | ||
"test": "nyc mocha --check-leaks tests/*.js", | ||
"test:live": "nyc mocha --check-leaks tests/live/*.js", | ||
"test:ci": "npm run lint && npm run test", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint --fix ." | ||
}, | ||
"author": "austin brown <[email protected]> (http://www.azuqua.com/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"cassandra-driver": "^3.6.0", | ||
"inherits": "^2.0.3", | ||
"lodash": "^4.17.14" | ||
"lodash": "^4.17.15" | ||
}, | ||
"devDependencies": { | ||
"async": "^3.0.1", | ||
"chai": "^4.1.2", | ||
"grunt": "^1.0.3", | ||
"grunt-contrib-jshint": "^2.1.0", | ||
"grunt-mocha-test": "^0.13.3", | ||
"mocha": "^6.1.4", | ||
"mocha-junit-reporter": "^1.22.0", | ||
"async": "^3.1.0", | ||
"chai": "^4.2.0", | ||
"eslint": "^6.3.0", | ||
"mocha": "^6.2.0", | ||
"mocha-junit-reporter": "^1.23.1", | ||
"nyc": "^14.1.1", | ||
"uuid": "^3.3.2" | ||
"uuid": "^3.3.3" | ||
}, | ||
"keywords": [ | ||
"cql", | ||
|
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
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
Oops, something went wrong.