Comparing version 1.0.4 to 1.0.5
@@ -0,1 +1,6 @@ | ||
<a name="1.0.5"></a> | ||
## [1.0.5](https://github.com/thetutlage/japa/compare/v1.0.4...v1.0.5) (2017-09-26) | ||
<a name="1.0.4"></a> | ||
@@ -2,0 +7,0 @@ ## [1.0.4](https://github.com/thetutlage/japa/compare/v1.0.3...v1.0.4) (2017-08-17) |
'use strict' | ||
class FizzBuzz { | ||
execute (number) { | ||
@@ -11,5 +10,4 @@ if (number % 15 === 0) return 'fizzbuzz' | ||
} | ||
} | ||
module.exports = FizzBuzz |
'use strict' | ||
class StringCalcuator { | ||
add (expression) { | ||
@@ -19,5 +18,4 @@ if (!expression) { | ||
} | ||
} | ||
module.exports = StringCalcuator |
{ | ||
"name": "japa", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Japa is a batteries included minimal testing framework for Node.Js. Japa does not have any cli to run your tests, infact running the test file as a node script will execute the tests for you (quite similar to tape)", | ||
@@ -11,5 +11,5 @@ "main": "index.js", | ||
"dependencies": { | ||
"chai": "^3.5.0", | ||
"chalk": "^1.1.3", | ||
"ms": "^0.7.2", | ||
"chai": "^4.1.2", | ||
"chalk": "^2.1.0", | ||
"ms": "^2.0.0", | ||
"retry": "^0.10.1", | ||
@@ -20,12 +20,12 @@ "right-pad": "^1.0.1", | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"chai": "^4.1.2", | ||
"faucet": "0.0.1", | ||
"istanbul": "^0.4.5", | ||
"lodash": "^4.17.4", | ||
"require-all": "^2.1.0", | ||
"semver": "^5.3.0", | ||
"shelljs": "^0.7.6", | ||
"standard": "^8.6.0", | ||
"tape": "^4.6.3", | ||
"ygor": "^4.0.1" | ||
"require-all": "^2.2.0", | ||
"semver": "^5.4.1", | ||
"shelljs": "^0.7.8", | ||
"standard": "^10.0.3", | ||
"tape": "^4.8.0", | ||
"ygor": "^4.0.4" | ||
}, | ||
@@ -32,0 +32,0 @@ "scripts": { |
@@ -91,2 +91,3 @@ 'use strict' | ||
return new Promise((resolve, reject) => fn.run().then(resolve).catch((error) => { | ||
/* eslint prefer-promise-reject-errors: "off" */ | ||
reject({title: fn._title, error: error}) | ||
@@ -93,0 +94,0 @@ })) |
@@ -9,3 +9,3 @@ 'use strict' | ||
const satisfies = semver.satisfies(process.version, '>=7.0.0') | ||
const satisfies = semver.satisfies(process.version, '>=7.0.0') && semver.satisfies(process.version, '<8.0.0') | ||
let filesToIgnore = [] | ||
@@ -12,0 +12,0 @@ let harmonyFlags = [] |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
60983
1939
0
+ Addedansi-styles@3.2.1(transitive)
+ Addedchai@4.5.0(transitive)
+ Addedchalk@2.4.2(transitive)
+ Addedcheck-error@1.0.3(transitive)
+ Addedcolor-convert@1.9.3(transitive)
+ Addedcolor-name@1.1.3(transitive)
+ Addeddeep-eql@4.1.4(transitive)
+ Addedget-func-name@2.0.2(transitive)
+ Addedhas-flag@3.0.0(transitive)
+ Addedloupe@2.3.7(transitive)
+ Addedms@2.1.3(transitive)
+ Addedpathval@1.1.1(transitive)
+ Addedsupports-color@5.5.0(transitive)
+ Addedtype-detect@4.1.0(transitive)
- Removedchai@3.5.0(transitive)
- Removeddeep-eql@0.1.3(transitive)
- Removedms@0.7.3(transitive)
- Removedtype-detect@0.1.11.0.0(transitive)
Updatedchai@^4.1.2
Updatedchalk@^2.1.0
Updatedms@^2.0.0