Skip to content

Commit

Permalink
Merge bc00f39 into ce27f44
Browse files Browse the repository at this point in the history
  • Loading branch information
kendaleiv committed Jan 31, 2016
2 parents ce27f44 + bc00f39 commit 2840caa
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .babelrc
@@ -1,4 +1,4 @@
{
"stage": 1,
"loose": ["es6.modules", "es6.classes"]
"presets": ["es2015"],
"plugins": ["transform-function-bind"]
}
3 changes: 3 additions & 0 deletions .istanbul.yml
@@ -0,0 +1,3 @@
instrumentation:
root: src/
include-all-sources: true
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -9,6 +9,8 @@ script:
- npm run check
- npm run build
- npm run validate
after_success:
- npm run coveralls
deploy:
provider: npm
email: ken@kendaleiv.com
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -2,6 +2,7 @@

[![npm](https://img.shields.io/npm/v/ensure-oxford-commas.svg)](https://www.npmjs.com/package/ensure-oxford-commas)
[![travis-status](https://img.shields.io/travis/kendaleiv/ensure-oxford-commas.svg)](https://travis-ci.org/kendaleiv/ensure-oxford-commas)
[![coveralls](https://img.shields.io/coveralls/kendaleiv/ensure-oxford-commas.svg)](https://coveralls.io/github/kendaleiv/ensure-oxford-commas)

Ensure or discover if Oxford commas are being used in English language text.

Expand Down
8 changes: 6 additions & 2 deletions package.json
Expand Up @@ -22,6 +22,8 @@
"audit": "nsp check package",
"build": "babel -d ./ ./src",
"check": "npm run audit && npm outdated --depth 0",
"coverage": "nyc --require babel-core/register --reporter=lcov --reporter=text --reporter=html npm test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src test",
"test": "ava",
"test:watch": "chokidar 'test/*.js' 'src/**' -c 'npm test' --silent --initial",
Expand All @@ -35,9 +37,11 @@
},
"devDependencies": {
"ava": "^0.11.0",
"babel": "^5.8.33",
"babel-core": "^5.8.33",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.5",
"babel-plugin-transform-function-bind": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"chokidar-cli": "^1.2.0",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
Expand Down

0 comments on commit 2840caa

Please sign in to comment.