Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ jspm_packages

.idea
.circleci
.nyc_output
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "@ownzones/smpte-timecode",
"version": "1.0.4",
"version": "1.0.5",
"description": "JavaScript implementation of SMPTE timecode type",
"main": "smpte-timecode.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test": "nyc node_modules/mocha/bin/_mocha --reporter spec --ui bdd --recursive -- -R spec",
"coverage": "codecov --file=coverage/lcov.info --disable=gcov",
"prebuild": "npm_version=$(npm --version); if [ ${npm_version%%.*} -ge 5 ]; then npx use-yarn -f message.txt; else use-yarn || ( npm install --save-dev --no-scripts --no-save use-yarn && use-yarn ); fi",
"preinstall": "npm_version=$(npm --version); if [ ${npm_version%%.*} -ge 5 ]; then npx use-yarn -f message.txt; else use-yarn || ( npm install --save-dev --no-scripts --no-save use-yarn && use-yarn ); fi"
"preinstall": "npm_version=$(npm --version); if [ ${npm_version%%.*} -ge 5 ]; then npx use-yarn -f message.txt; else use-yarn || ( npm install --save-dev --no-scripts --no-save use-yarn && use-yarn ); fi"
},
"repository": {
"type": "git",
Expand All @@ -32,11 +31,11 @@
},
"homepage": "https://github.com/OwnZones/smpte-timecode#readme",
"devDependencies": {
"codecov": "3.5.0",
"coveralls": "3.0.6",
"codecov": "4.0.0-0",
"coveralls": "3.1.1",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"mocha": "6.2.0",
"publish": "0.6.0"
"mocha": "9.0.3",
"use-yarn": "^2.2.0",
"nyc": "15.1.0"
}
}
3 changes: 0 additions & 3 deletions test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
--reporter spec
--ui bdd
--recursive
Loading