New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

japa

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

japa - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

5

CHANGELOG.md

@@ -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)

2

examples/code/FizzBuzz.js
'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 = []

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc