Skip to content

Commit

Permalink
Updating devDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Jul 29, 2020
1 parent 0ef0f3b commit 8f2bcbc
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 23 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"no-shadow": 0,
"valid-jsdoc": 0
}
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/.idea/
/doc/
/coverage/
/.nyc_output/
/site
/report/
/.c9revisions/
Expand Down
3 changes: 2 additions & 1 deletion CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- Update codebase to use ES6
- Update dev package dependencies
- Update codebase to use ES6
- Remove JSHint and jshint overrides
- Add esLint using standard tamia presets
- Replace var with let/const
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"lint": "eslint lib/ bin/ test/ --cache --fix",
"lint:md": "remark -f 'README.md' docs",
"lint:text": "textlint 'README.md' 'docs/*.md' 'docs/**/*.md'",
"prettier": "prettier --config .prettierrc.json --write ./**/**/*.js **/*.js *.js",
"prettier": "prettier --config .prettierrc.json --write '**/**/**/*.js' '**/**/*.js' '**/*.js' '*.js'",
"prettier:text": "prettier 'README.md' 'docs/*.md' 'docs/**/*.md' --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"test": "nyc --reporter=text mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"test:coverage": "nyc --reporter=lcov mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test:watch": "npm run test -- -w ./lib",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
Expand All @@ -43,25 +43,25 @@
"logops": "2.1.0"
},
"devDependencies": {
"coveralls": "~3.0.2",
"husky": "~1.1.0",
"eslint": "~5.16.0",
"eslint-config-tamia": "~6.2.1",
"eslint-plugin-prettier": "~3.1.0",
"should": "8.4.0",
"nock": "10.0.2",
"lint-staged": "~7.3.0",
"mocha": "5.2.0",
"istanbul": "0.4.5",
"proxyquire": "0.5.1",
"prettier": "~1.14.2",
"remark-cli": "~6.0.1",
"remark-preset-lint-recommended": "~3.0.2",
"mongodb": "2.2.35",
"textlint": "~11.0.1",
"coveralls": "~3.1.0",
"eslint": "~7.5.0",
"eslint-config-tamia": "~7.2.5",
"eslint-plugin-prettier": "~3.1.4",
"husky": "~4.2.5",
"lint-staged": "~10.2.11",
"mongodb": "3.5.9",
"nock": "13.0.3",
"mocha": "8.0.1",
"nyc": "~15.1.0",
"proxyquire": "2.1.3",
"prettier": "~2.0.5",
"remark-cli": "~8.0.1",
"remark-preset-lint-recommended": "~4.0.1",
"should": "13.2.3",
"textlint": "~11.7.6",
"textlint-rule-common-misspellings": "~1.0.1",
"textlint-rule-no-dead-link": "~4.4.1",
"textlint-rule-terminology": "~1.1.30",
"textlint-rule-no-dead-link": "~4.7.0",
"textlint-rule-terminology": "~2.1.4",
"textlint-rule-write-good": "~1.6.2",
"watch": "~1.0.2"
},
Expand Down

0 comments on commit 8f2bcbc

Please sign in to comment.