Skip to content

Nyc #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 19, 2017
Merged

Nyc #71

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ lib-cov
coverage
lib

.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

Expand Down
2 changes: 0 additions & 2 deletions .istanbul.yml

This file was deleted.

10 changes: 10 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"**/spec/**",
"lib/"
]
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"scripts": {
"build": "./node_modules/.bin/babel src/ -d lib/",
"test": "TESTING=1 ./node_modules/.bin/istanbul cover ./node_modules/.bin/jasmine",
"test": "TESTING=1 nyc ./node_modules/.bin/jasmine",
"prepublish": "npm run build"
},
"keywords": [
Expand All @@ -28,9 +28,9 @@
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"codecov": "2.1.0",
"istanbul": "1.1.0-alpha.1",
"jasmine": "2.5.3",
"jasmine-spec-reporter": "^3.2.0"
"jasmine-spec-reporter": "^3.2.0",
"nyc": "^10.1.2"
},
"dependencies": {
"apn": "^1.7.8",
Expand Down