call-matcher
Advanced tools
Comparing version 0.1.0 to 1.0.0
@@ -0,1 +1,9 @@ | ||
## [1.0.0](https://github.com/twada/call-matcher/releases/tag/v1.0.0) (2016-05-28) | ||
#### Features | ||
* consolidate ponyfills into core-js ([a083946c](https://github.com/twada/call-matcher/commit/a083946c26cfd236122b5298c3ea5c1facb0baca)) | ||
## [0.1.0](https://github.com/twada/call-matcher/releases/tag/v0.1.0) (2015-12-23) | ||
@@ -2,0 +10,0 @@ |
12
index.js
@@ -7,3 +7,3 @@ /** | ||
* | ||
* Copyright (c) 2015 Takuto Wada | ||
* Copyright (c) 2015-2016 Takuto Wada | ||
* Licensed under the MIT license. | ||
@@ -19,7 +19,7 @@ * https://github.com/twada/call-matcher/blob/master/MIT-LICENSE.txt | ||
var hasOwn = Object.prototype.hasOwnProperty; | ||
var forEach = require('array-foreach'); | ||
var map = require('array-map'); | ||
var filter = require('array-filter'); | ||
var reduce = require('array-reduce'); | ||
var indexOf = require('indexof'); | ||
var forEach = require('core-js/library/fn/array/for-each'); | ||
var map = require('core-js/library/fn/array/map'); | ||
var filter = require('core-js/library/fn/array/filter'); | ||
var reduce = require('core-js/library/fn/array/reduce'); | ||
var indexOf = require('core-js/library/fn/array/index-of'); | ||
var deepEqual = require('deep-equal'); | ||
@@ -26,0 +26,0 @@ var notCallExprMessage = 'Argument should be in the form of CallExpression'; |
@@ -1,2 +0,2 @@ | ||
Copyright (c) 2015 Takuto Wada, https://github.com/twada/call-matcher | ||
Copyright (c) 2015-2016 Takuto Wada, https://github.com/twada/call-matcher | ||
@@ -3,0 +3,0 @@ Permission is hereby granted, free of charge, to any person obtaining |
{ | ||
"name": "call-matcher", | ||
"description": "ECMAScript CallExpression matcher made from function/method signature", | ||
"version": "0.1.0", | ||
"version": "1.0.0", | ||
"author": { | ||
@@ -12,10 +12,6 @@ "name": "Takuto Wada", | ||
"dependencies": { | ||
"array-filter": "^1.0.0", | ||
"array-foreach": "^1.0.1", | ||
"array-map": "0.0.0", | ||
"array-reduce": "0.0.0", | ||
"core-js": "^2.0.0", | ||
"deep-equal": "^1.0.0", | ||
"espurify": "^1.5.0", | ||
"estraverse": "^4.0.0", | ||
"indexof": "0.0.1" | ||
"espurify": "^1.6.0", | ||
"estraverse": "^4.0.0" | ||
}, | ||
@@ -25,3 +21,3 @@ "devDependencies": { | ||
"babylon": "^6.3.21", | ||
"browserify": "^12.0.1", | ||
"browserify": "^13.0.0", | ||
"derequire": "^2.0.2", | ||
@@ -31,3 +27,3 @@ "dereserve": "^0.1.1", | ||
"jshint": "2.8.0", | ||
"licensify": "^2.0.1", | ||
"licensify": "^3.1.1", | ||
"mocha": "^2.3.3" | ||
@@ -55,3 +51,3 @@ }, | ||
"scripts": { | ||
"dist": "mkdir dist && browserify index.js --plugin licensify --standalone CallMatcher | dereserve | derequire > ./dist/call-matcher.js", | ||
"dist": "mkdir -p dist && browserify index.js --plugin licensify --standalone CallMatcher | dereserve | derequire > ./dist/call-matcher.js", | ||
"lint": "jshint index.js", | ||
@@ -58,0 +54,0 @@ "preversion": "npm test", |
Sorry, the diff of this file is too big to display
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
82291
4
2082
0
5
1
0
1
+ Addedcore-js@^2.0.0
- Removedarray-filter@^1.0.0
- Removedarray-foreach@^1.0.1
- Removedarray-map@0.0.0
- Removedarray-reduce@0.0.0
- Removedindexof@0.0.1
- Removedarray-filter@1.0.0(transitive)
- Removedarray-foreach@1.0.2(transitive)
- Removedarray-map@0.0.0(transitive)
- Removedarray-reduce@0.0.0(transitive)
- Removedindexof@0.0.1(transitive)
Updatedespurify@^1.6.0