Comparing version 0.1.2 to 0.1.3
@@ -19,2 +19,3 @@ module.exports = | ||
, lt : require('./lib/lt') | ||
, merge : require('./lib/merge') | ||
, min : require('./lib/min') | ||
@@ -21,0 +22,0 @@ , not : require('./lib/not') |
{ | ||
"name": "funkis", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Functional programming in JavaScript.", | ||
@@ -31,3 +31,6 @@ "main": "index.js", | ||
}, | ||
"homepage": "https://github.com/mstade/funkis" | ||
"homepage": "https://github.com/mstade/funkis", | ||
"dependencies": { | ||
"expect.js": "^0.3.1" | ||
} | ||
} |
@@ -5,12 +5,12 @@ var fs = require('fs') | ||
, funkis = require('../') | ||
, expect = require('chai').expect | ||
, expect = require('expect.js') | ||
describe('funkis', function() { | ||
it('should export every function in lib/', function() { | ||
var names = fs.readdirSync(path.join(__dirname, '../lib')).map(function(file) { | ||
return path.basename(file, '.js') | ||
}) | ||
expect(funkis).to.have.keys(names) | ||
var names = fs.readdirSync(path.join(__dirname, '../lib')) | ||
.map(function(file) { | ||
var module = path.basename(file, '.js') | ||
expect(funkis).to.have.key(module) | ||
}) | ||
}) | ||
}) |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
148891
84
2431
1
+ Addedexpect.js@^0.3.1
+ Addedexpect.js@0.3.1(transitive)