Skip to content

Instantly share code, notes, and snippets.

@orta
Last active February 26, 2017 16:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orta/cb6d0b8256852c1f01ecf1d803b664c9 to your computer and use it in GitHub Desktop.
Save orta/cb6d0b8256852c1f01ecf1d803b664c9 to your computer and use it in GitHub Desktop.
Making a Markdown table showing the conversion from NPM Shrinkwraps to Yarn

First: Run yarn install on your project. Also, have an NPM shrinkwrap.

Next: Download the gist, move the ruby file into your Node project's root. Run ruby generate_yarn_diff.rb.rb - if that works, send it to your pasteboard by doing ruby generate_yarn_diff.rb | pbcopy.

Note: A transitive dependency is something that a direct dependency of yours depends on.

require "JSON"
packageText = File.read "package.json"
package = JSON.parse packageText
shrinkText = File.read "npm-shrinkwrap.json"
shrinkwrap = JSON.parse shrinkText
deps = {}
messages = []
yarnDeps = []
shrinkwrap["dependencies"].keys.each do |shrinkKey|
deps[shrinkKey] = { shrinkwrap: shrinkwrap["dependencies"][shrinkKey]["version"] }
end
yarnText = File.read "yarn.lock"
dependency = nil
yarnText.lines.each do |l|
# the bottom bit finds the dependency, then this catches it on the next line
if dependency != nil
dep = deps[dependency]
if dep.nil?
messages << "Expected a dep for #{dependency} in Shrinkwrap"
else
dep[:yarn] = l.split(" ").last.gsub('"', "")
end
dependency = nil
end
# first line has the @ for version declaration, no http link and no preceding spaces
if l.include?("@") && !l.start_with?(" ")
# could be multiple @
dependency = l.split(",").first.split("@")[0...-1].join("@").gsub('"', "")
end
end
puts "\n### Direct Dependencies"
puts "| Library | Node | Yarn |"
puts "|-----------|------|------|"
direct = deps.keys.select { |library| package["dependencies"][library] || package["devDependencies"][library] || package["peerDependencies"][library] }
direct.each do |library|
puts "**#{library}** | #{deps[library][:shrinkwrap]} | #{deps[library][:yarn]}"
end
puts "\n### Transitive Dependencies"
puts "| Library | Node | Yarn |"
puts "|-----------|------|------|"
transitive = deps.keys.reject { |library| package["dependencies"][library] || package["devDependencies"][library] || package["peerDependencies"][library] }
transitive.each do |library|
puts "#{library} | #{deps[library][:shrinkwrap]} | #{deps[library][:yarn]}"
end
puts "\n### Messages"
messages.each do |m|
puts "- " + m
end

Direct Dependencies

Library Node Yarn
@kadira/react-native-storybook 1.12.6 1.12.6
apphub 0.5.1 0.5.1
babel-eslint 6.0.4 6.1.2
babel-jest 14.1.0 15.0.0
babel-polyfill 6.13.0 6.16.0
babel-preset-react-native 1.9.0 1.9.0
babel-relay-plugin 0.9.3 0.9.3
concurrently 2.2.0 2.2.0
danger 0.0.10 0.0.10
eslint 2.11.1 2.13.1
eslint-plugin-flow-vars 0.2.1 0.2.1
eslint-plugin-flowtype 2.4.0 2.25.0
eslint-plugin-react 4.3.0 4.3.0
flow-bin 0.32.0 0.34.0
jest 15.1.1 15.1.1
jest-react-native 15.0.0 15.0.0
lodash 3.10.1 4.17.2
react 15.3.2 15.3.2
react-native 0.34.1 0.34.1
react-native-parallax-scroll-view 0.18.2 0.18.2
react-relay 0.9.3 0.9.3
react-storybooks-relay-container 1.0.0 1.0.0
react-test-renderer 15.3.1 15.4.1
remove-markdown 0.1.0 0.1.0

Transitive Dependencies

Library Node Yarn
@kadira/react-split-pane 1.4.7 1.4.7
@kadira/storybook-channel 1.1.0 1.1.0
@kadira/storybook-channel-firebase 1.0.3 1.0.3
@kadira/storybook-channel-websocket 1.0.1 1.0.1
@kadira/storybook-ui 2.6.1 2.6.1
abab 1.0.3 1.0.3
abbrev 1.0.9 1.0.9
absolute-path 0.0.0 0.0.0
accepts 1.2.13 1.3.3
acorn 1.2.2 4.0.3
acorn-globals 1.0.9 1.0.9
acorn-jsx 3.0.1 3.0.1
align-text 0.1.4 0.1.4
amdefine 1.0.0 1.0.1
ansi 0.3.1 0.3.1
ansi-escapes 1.4.0 1.4.0
ansi-regex 2.0.0 2.0.0
ansi-styles 2.2.1 2.2.1
ansicolors 0.2.1 0.2.1
append-transform 0.3.0 0.3.0
archive-type 3.2.0 3.2.0
are-we-there-yet 1.1.2 1.1.2
argparse 1.0.7 1.0.9
arr-diff 2.0.0 2.0.0
arr-flatten 1.0.1 1.0.1
array-differ 1.0.0 1.0.0
array-equal 1.0.0 1.0.0
array-find-index 1.0.1 1.0.2
array-flatten 1.1.1 1.1.1
array-union 1.0.1 1.0.2
array-uniq 1.0.2 1.0.3
array-unique 0.2.1 0.2.1
arrify 1.0.1 1.0.1
art 0.10.1 0.10.1
asap 2.0.4 2.0.5
asn1 0.2.3 0.2.3
assert-plus 0.2.0 1.0.0
ast-query 1.2.0 2.0.0
ast-types 0.8.15 0.9.2
async 0.2.10 0.2.10
asynckit 0.4.0 0.4.0
aws-sign2 0.6.0 0.6.0
aws4 1.4.1 1.5.0
babel-code-frame 6.8.0 6.16.0
babel-core 6.9.1 6.18.2
babel-generator 6.9.0 6.19.0
babel-helper-builder-react-jsx 6.9.0 6.18.0
babel-helper-call-delegate 6.8.0 6.18.0
babel-helper-define-map 6.9.0 6.18.0
babel-helper-function-name 6.8.0 6.18.0
babel-helper-get-function-arity 6.8.0 6.18.0
babel-helper-hoist-variables 6.8.0 6.18.0
babel-helper-optimise-call-expression 6.8.0 6.18.0
babel-helper-regex 6.9.0 6.18.0
babel-helper-replace-supers 6.8.0 6.18.0
babel-helpers 6.8.0 6.16.0
babel-messages 6.8.0 6.8.0
babel-plugin-check-es2015-constants 6.8.0 6.8.0
babel-plugin-external-helpers 6.8.0 6.18.0
babel-plugin-istanbul 2.0.1 2.0.3
babel-plugin-jest-hoist 14.1.1 15.0.0
babel-plugin-react-transform 2.0.2 2.0.2
babel-plugin-syntax-async-functions 6.8.0 6.13.0
babel-plugin-syntax-class-properties 6.8.0 6.13.0
babel-plugin-syntax-flow 6.8.0 6.18.0
babel-plugin-syntax-jsx 6.8.0 6.18.0
babel-plugin-syntax-object-rest-spread 6.8.0 6.13.0
babel-plugin-syntax-trailing-function-commas 6.8.0 6.13.0
babel-plugin-transform-class-properties 6.10.2 6.19.0
babel-plugin-transform-es2015-arrow-functions 6.8.0 6.8.0
babel-plugin-transform-es2015-block-scoped-functions 6.8.0 6.8.0
babel-plugin-transform-es2015-block-scoping 6.10.1 6.18.0
babel-plugin-transform-es2015-classes 6.9.0 6.18.0
babel-plugin-transform-es2015-computed-properties 6.8.0 6.8.0
babel-plugin-transform-es2015-destructuring 6.9.0 6.19.0
babel-plugin-transform-es2015-for-of 6.8.0 6.18.0
babel-plugin-transform-es2015-function-name 6.9.0 6.9.0
babel-plugin-transform-es2015-literals 6.8.0 6.8.0
babel-plugin-transform-es2015-modules-commonjs 6.10.3 6.18.0
babel-plugin-transform-es2015-object-super 6.8.0 6.8.0
babel-plugin-transform-es2015-parameters 6.11.4 6.18.0
babel-plugin-transform-es2015-shorthand-properties 6.8.0 6.18.0
babel-plugin-transform-es2015-spread 6.8.0 6.8.0
babel-plugin-transform-es2015-sticky-regex 6.8.0 6.8.0
babel-plugin-transform-es2015-template-literals 6.8.0 6.8.0
babel-plugin-transform-es2015-unicode-regex 6.11.0 6.11.0
babel-plugin-transform-es3-member-expression-literals 6.8.0 6.8.0
babel-plugin-transform-es3-property-literals 6.8.0 6.8.0
babel-plugin-transform-flow-strip-types 6.8.0 6.18.0
babel-plugin-transform-object-assign 6.8.0 6.8.0
babel-plugin-transform-object-rest-spread 6.8.0 6.19.0
babel-plugin-transform-react-display-name 6.8.0 6.8.0
babel-plugin-transform-react-jsx 6.8.0 6.8.0
babel-plugin-transform-react-jsx-source 6.9.0 6.9.0
babel-plugin-transform-regenerator 6.11.4 6.16.1
babel-plugin-transform-strict-mode 6.11.3 6.18.0
babel-preset-es2015-node 6.1.1 6.1.1
babel-preset-fbjs 2.0.0 2.1.0
babel-preset-jest 14.1.0 15.0.0
babel-register 6.9.0 6.18.0
babel-runtime 6.9.2 6.18.0
babel-template 6.9.0 6.16.0
babel-traverse 6.9.0 6.19.0
babel-types 6.9.1 6.19.0
babylon 6.8.1 6.14.1
balanced-match 0.4.1 0.4.2
base62 1.1.1 1.1.2
base64-js 0.0.8 0.0.8
base64-url 1.2.2 1.3.3
base64url 1.0.6 2.0.0
basic-auth 1.0.4 1.0.4
basic-auth-connect 1.0.0 1.0.0
batch 0.5.3 0.5.3
bcrypt-pbkdf 1.0.0 1.0.0
beeper 1.1.0 1.1.1
binaryextensions 1.0.1 1.0.1
bl 1.1.2 1.1.2
bluebird 2.9.6 2.9.6
body-parser 1.13.3 1.13.3
boolbase 1.0.0 1.0.0
boom 2.10.1 2.10.1
bplist-creator 0.0.4 0.0.4
bplist-parser 0.0.6 0.0.6
brace-expansion 1.1.4 1.1.6
braces 1.8.5 1.8.5
browser-resolve 1.11.2 1.11.2
bser 1.0.2 1.0.2
buffer-crc32 0.2.5 0.2.13
buffer-equal-constant-time 1.0.1 1.0.1
buffer-shims 1.0.0
buffer-to-vinyl 1.1.0 1.1.0
builtin-modules 1.1.1 1.1.1
bytes 2.1.0 2.4.0
caller-path 0.1.0 0.1.0
callsites 0.2.0 2.0.0
camelcase 2.1.1 3.0.0
camelcase-keys 2.1.0 2.1.0
capture-stack-trace 1.0.0 1.0.0
cardinal 1.0.0 1.0.0
caseless 0.11.0 0.11.0
caw 1.2.0 1.2.0
center-align 0.1.3 0.1.3
chalk 1.1.3 1.1.3
cheerio 0.19.0 0.19.0
class-extend 0.1.2 0.1.2
classnames 2.2.5 2.2.5
cli-cursor 1.0.2 1.0.2
cli-table 0.3.1 0.3.1
cli-usage 0.1.4 0.1.4
cli-width 2.1.0 2.1.0
cliui 2.1.0 3.2.0
clone 1.0.2 1.0.2
clone-stats 0.0.1 0.0.1
co 3.1.0 4.6.0
code-point-at 1.0.0 1.1.0
colors 1.0.3 1.0.3
combined-stream 1.0.5 1.0.5
commander 2.9.0 2.8.1
commondir 1.0.1 1.0.1
commoner 0.10.4 0.10.8
compressible 2.0.8 2.0.9
compression 1.5.2 1.5.2
concat-map 0.0.1 0.0.1
concat-stream 1.4.10 1.4.10
connect 2.30.2 2.30.2
connect-timeout 1.6.2 1.6.2
content-disposition 0.5.1 0.5.1
content-type 1.0.2 1.0.2
convert-source-map 1.2.0 1.3.0
cookie 0.1.3 0.3.1
cookie-parser 1.3.5 1.3.5
cookie-signature 1.0.6 1.0.6
core-js 1.2.6 2.4.1
core-util-is 1.0.2 1.0.2
crc 3.3.0 3.3.0
create-error-class 3.0.2 3.0.2
cross-spawn 3.0.1 3.0.1
cross-spawn-async 2.2.4 2.2.5
cryptiles 2.0.5 2.0.5
csrf 3.0.3 3.0.4
css-select 1.0.0 1.0.0
css-what 1.0.0 1.0.0
cssom 0.3.1 0.3.1
cssstyle 0.2.37 0.2.37
csurf 1.8.3 1.8.3
currently-unhandled 0.4.1 0.4.1
d 0.1.1 0.1.1
dargs 4.1.0 4.1.0
dashdash 1.14.0 1.14.1
dateformat 1.0.12 1.0.12
debug 2.2.0 2.3.3
decamelize 1.2.0 1.2.0
decompress 3.0.0 3.0.0
decompress-tar 3.1.0 3.1.0
decompress-tarbz2 3.1.0 3.1.0
decompress-targz 3.1.0 3.1.0
decompress-unzip 3.4.0 3.4.0
deep-equal 1.0.1 1.0.1
deep-extend 0.4.1 0.4.1
deep-is 0.1.3 0.1.3
defined 1.0.0 1.0.0
del 2.2.0 2.2.2
delayed-stream 1.0.0 1.0.0
delegates 1.0.0 1.0.0
denodeify 1.2.1 1.2.1
depd 1.0.1 1.1.0
destroy 1.0.4 1.0.4
detect-conflict 1.0.1 1.0.1
detect-indent 3.0.1 4.0.0
detect-newline 1.0.3 1.0.3
detective 4.3.1 4.3.2
diff 2.2.3 3.0.1
doctrine 1.2.2 1.5.0
dom-serializer 0.1.0 0.1.0
dom-storage 2.0.2 2.0.2
dom-walk 0.1.1 0.1.1
domelementtype 1.3.0 1.1.3
domhandler 2.3.0 2.3.0
domutils 1.4.3 1.5.1
download 4.4.3 4.4.3
duplexer2 0.0.2 0.1.4
duplexify 3.4.5 3.5.0
each-async 1.1.1 1.1.1
ecc-jsbn 0.1.1 0.1.1
ecdsa-sig-formatter 1.0.5 1.0.7
ee-first 1.1.1 1.1.1
ejs 2.5.2 2.5.2
element-class 0.2.2 0.2.2
encodeurl 1.0.1 1.0.1
encoding 0.1.12 0.1.12
end-of-stream 1.1.0 1.0.0
entities 1.1.1 1.1.1
errno 0.1.4 0.1.4
error-ex 1.3.0 1.3.0
errorhandler 1.4.3 1.4.3
es5-ext 0.10.11 0.10.12
es6-iterator 2.0.0 2.0.0
es6-map 0.1.4 0.1.4
es6-set 0.1.4 0.1.4
es6-symbol 3.1.0 3.1.0
es6-weak-map 2.0.1 2.0.1
escape-html 1.0.3 1.0.3
escape-string-regexp 1.0.5 1.0.5
escodegen 1.8.0 1.8.1
escope 3.6.0 3.6.0
espree 3.1.4 3.3.2
esprima-fb 15001.1.0-dev-harmony-fb 15001.1.0-dev-harmony-fb
esrecurse 4.1.0 4.1.0
estraverse 1.9.3 4.1.1
esutils 2.0.2 2.0.2
etag 1.7.0 1.7.0
event-emitter 0.3.4 0.3.4
event-target-shim 1.1.1 1.1.1
events 1.1.1 1.1.1
exec-sh 0.2.0 0.2.0
exenv 1.2.0 1.2.0
exit-hook 1.1.1 1.1.1
expand-brackets 0.1.5 0.1.5
expand-range 1.8.2 1.8.2
express 4.14.0 4.14.0
express-session 1.11.3 1.11.3
extend 3.0.0 3.0.0
extend-shallow 2.0.1 2.0.1
extglob 0.3.2 0.3.2
extsprintf 1.0.2 1.0.2
fancy-log 1.2.0 1.2.0
fast-levenshtein 1.1.3 2.0.5
faye-websocket 0.9.3 0.9.3
fb-watchman 1.9.0 1.9.0
fbjs 0.8.3 0.8.6
fbjs-scripts 0.7.1 0.7.1
fd-slicer 1.0.1 1.0.1
figures 1.7.0 1.7.0
file-entry-cache 1.2.4 1.3.1
file-type 3.8.0 3.9.0
filename-regex 2.0.0 2.0.0
filename-reserved-regex 1.0.0 1.0.0
filenamify 1.2.1 1.2.1
fileset 0.2.1 0.2.1
fill-range 2.2.3 2.2.3
finalhandler 0.4.0 0.5.0
find-up 1.1.2 1.1.2
firebase 3.3.0 3.6.1
first-chunk-stream 2.0.0 2.0.0
flat-cache 1.0.10 1.2.1
for-in 0.1.5 0.1.6
for-own 0.1.4 0.1.4
forever-agent 0.6.1 0.6.1
form-data 2.0.0 2.1.2
formatio 1.1.1 1.1.1
forwarded 0.1.0 0.1.0
fresh 0.3.0 0.3.0
fs-extra 0.26.7 0.26.7
fs.realpath 1.0.0 1.0.0
fuse.js 2.5.0 2.5.0
fuzzysearch 1.0.3 1.0.3
gauge 1.2.7 1.2.7
generate-function 2.0.0 2.0.0
generate-object-property 1.2.0 1.2.0
get-caller-file 1.0.2 1.0.2
get-proxy 1.1.0 1.1.0
get-stdin 4.0.1 4.0.1
getpass 0.1.6 0.1.6
gh-got 2.4.0 2.4.0
github-username 2.1.0 2.1.0
glob 5.0.15 7.1.1
glob-base 0.3.0 0.3.0
glob-parent 2.0.0 3.0.1
glob-stream 5.3.5 5.3.5
global 4.3.0 4.3.1
globals 8.18.0 9.14.0
globby 4.1.0 5.0.0
glogg 1.0.0 1.0.0
got 5.6.0 5.7.1
graceful-fs 4.1.4 4.1.11
graceful-readlink 1.0.1 1.0.1
graphql 0.6.2 0.6.2
grouped-queue 0.3.2 0.3.3
growl 1.9.2 1.9.2
growly 1.3.0 1.3.0
gruntfile-editor 1.2.0 1.2.1
gulp-decompress 1.2.0 1.2.0
gulp-rename 1.2.2 1.2.2
gulp-sourcemaps 1.6.0 1.6.0
gulp-util 3.0.7 3.0.7
gulplog 1.0.0 1.0.0
handlebars 4.0.5 4.0.6
har-validator 2.0.6 2.0.6
has-ansi 2.0.0 2.0.0
has-flag 1.0.0 1.0.0
has-gulplog 0.1.0 0.1.0
has-unicode 2.0.1 2.0.1
hawk 3.1.3 3.1.3
hoek 2.16.3 2.16.3
hoist-non-react-statics 1.2.0 1.2.0
home-or-tmp 1.0.0 2.0.0
hosted-git-info 2.1.5 2.1.5
html-wiring 1.2.0 1.2.0
htmlparser2 3.8.3 3.8.3
http-errors 1.3.1 1.5.1
http-signature 1.1.1 1.1.1
iconv-lite 0.4.13 0.4.15
ignore 3.1.2 3.2.0
image-size 0.3.5 0.3.5
immutable 3.8.1 3.7.6
imurmurhash 0.1.4 0.1.4
indent-string 2.1.0 2.1.0
inflight 1.0.5 1.0.6
inherits 2.0.1 2.0.1
ini 1.3.4 1.3.4
inquirer 0.12.0 0.12.0
interpret 1.0.1 1.0.1
invariant 2.2.1 2.2.2
invert-kv 1.0.0 1.0.0
ipaddr.js 1.1.1 1.1.1
is-absolute 0.1.7 0.1.7
is-arrayish 0.2.1 0.2.1
is-buffer 1.1.3 1.1.4
is-builtin-module 1.0.0 1.0.0
is-bzip2 1.0.0 1.0.0
is-dom 1.0.5 1.0.5
is-dotfile 1.0.2 1.0.2
is-equal-shallow 0.1.3 0.1.3
is-extendable 0.1.1 0.1.1
is-extglob 1.0.0 2.1.0
is-finite 1.0.1 1.0.2
is-fullwidth-code-point 1.0.0 2.0.0
is-glob 2.0.1 3.1.0
is-gzip 1.0.0 1.0.0
is-my-json-valid 2.13.1 2.15.0
is-natural-number 2.1.1 2.1.1
is-number 2.1.0 2.1.0
is-obj 1.0.1 1.0.1
is-path-cwd 1.0.0 1.0.0
is-path-in-cwd 1.0.0 1.0.0
is-path-inside 1.0.0 1.0.0
is-plain-obj 1.1.0
is-posix-bracket 0.1.1 0.1.1
is-primitive 2.0.0 2.0.0
is-property 1.0.2 1.0.2
is-redirect 1.0.0 1.0.0
is-relative 0.1.3 0.1.3
is-resolvable 1.0.0 1.0.0
is-retry-allowed 1.1.0 1.1.0
is-stream 1.1.0 1.1.0
is-tar 1.0.0 1.0.0
is-typedarray 1.0.0 1.0.0
is-url 1.2.2 1.2.2
is-utf8 0.2.1 0.2.1
is-valid-glob 0.3.0 0.3.0
is-zip 1.0.0 1.0.0
isarray 0.0.1 1.0.0
isemail 1.2.0 1.2.0
isexe 1.1.2 1.1.2
isobject 2.1.0 2.1.0
isomorphic-fetch 2.2.1 2.2.1
isstream 0.1.2 0.1.2
istanbul 0.4.5 0.4.5
istanbul-api 1.0.0-aplha.10 1.0.0-aplha.10
istanbul-lib-coverage 1.0.0 1.0.0
istanbul-lib-hook 1.0.0-alpha.4 1.0.0-alpha.4
istanbul-lib-instrument 1.1.3 1.3.0
istanbul-lib-report 1.0.0-alpha.3 1.0.0-alpha.3
istanbul-lib-source-maps 1.0.1 1.1.0
istanbul-reports 1.0.0-alpha.8 1.0.0
istextorbinary 1.0.2 1.0.2
iterall 1.0.2 1.0.2
jade 0.26.3 0.26.3
jasmine-check 0.1.5 0.1.5
jest-changed-files 15.0.0 15.0.0
jest-cli 15.1.1 15.1.1
jest-config 15.1.1 15.1.1
jest-diff 15.1.0 15.1.0
jest-environment-jsdom 15.1.1 15.1.1
jest-environment-node 15.1.1 15.1.1
jest-file-exists 15.0.0 15.0.0
jest-haste-map 15.0.1 15.0.1
jest-jasmine2 15.1.1 15.1.1
jest-matcher-utils 15.1.0 15.1.0
jest-matchers 15.1.1 15.1.1
jest-mock 15.0.0 15.0.0
jest-resolve 15.0.1 15.0.1
jest-resolve-dependencies 15.0.1 15.0.1
jest-runtime 15.1.1 15.1.1
jest-snapshot 15.1.1 15.1.1
jest-util 15.1.1 15.1.1
jodid25519 1.0.2 1.0.2
joi 6.10.1 6.10.1
js-tokens 1.0.3 2.0.0
js-yaml 3.6.1 3.7.0
jsbn 0.1.0 0.1.0
jsdom 9.5.0 9.8.3
jsesc 0.5.0 0.5.0
json-schema 0.2.3 0.2.3
json-stable-stringify 1.0.1 1.0.1
json-stringify-safe 5.0.1 5.0.1
json5 0.4.0 0.5.0
jsonfile 2.4.0 2.4.0
jsonify 0.0.0 0.0.0
jsonparse 1.2.0 1.2.0
jsonpointer 2.0.0 4.0.0
JSONStream 1.2.1 1.2.1
jsonwebtoken 5.7.0 5.7.0
jsprim 1.3.1 1.3.1
jstransform 11.0.3 11.0.3
jwa 1.1.3 1.1.4
jws 3.1.3 3.1.4
keycode 2.1.4 2.1.7
kind-of 3.0.3 3.0.4
klaw 1.3.0 1.3.1
lazy-cache 1.0.4 1.0.4
lazystream 1.0.0 1.0.0
lcid 1.0.0 1.0.0
levn 0.3.0 0.3.0
load-json-file 1.1.0 1.1.0
lodash-es 4.15.0 4.17.2
lodash._arraycopy 3.0.0 3.0.0
lodash._arrayeach 3.0.0 3.0.0
lodash._baseassign 3.2.0 3.2.0
lodash._baseclone 3.3.0 3.3.0
lodash._basecopy 3.0.1 3.0.1
lodash._basefor 3.0.3 3.0.3
lodash._baseiteratee 4.7.0
lodash._basetostring 3.0.1 3.0.1
lodash._basevalues 3.0.0 3.0.0
lodash._bindcallback 3.0.1 3.0.1
lodash._createassigner 3.1.1 3.1.1
lodash._getnative 3.9.1 3.9.1
lodash._isiterateecall 3.0.9 3.0.9
lodash._reescape 3.0.0 3.0.0
lodash._reevaluate 3.0.0 3.0.0
lodash._reinterpolate 3.0.0 3.0.0
lodash._root 3.0.1 3.0.1
lodash._stringtopath 4.8.0
lodash.assign 4.0.9 4.2.0
lodash.clonedeep 3.0.2 3.0.2
lodash.escape 3.2.0 3.2.0
lodash.isarguments 3.0.8 3.1.0
lodash.isarray 3.0.4 3.0.4
lodash.isequal 4.4.0 4.4.0
lodash.keys 3.1.2 3.1.2
lodash.keysin 4.1.4
lodash.pad 4.5.1 4.5.1
lodash.padend 4.6.1 4.6.1
lodash.padstart 4.6.1 4.6.1
lodash.pick 4.4.0 4.4.0
lodash.pickby 4.4.0 4.6.0
lodash.rest 4.0.3
lodash.restparam 3.6.1 3.6.1
lodash.template 3.6.2 3.6.2
lodash.templatesettings 3.1.1 3.1.1
log-symbols 1.0.2 1.0.2
lolex 1.3.2 1.3.2
longest 1.0.1 1.0.1
loose-envify 1.2.0 1.3.0
loud-rejection 1.6.0 1.6.0
lowercase-keys 1.0.0 1.0.0
lru-cache 2.7.3 4.0.1
makeerror 1.0.11 1.0.11
mantra-core 1.7.0 1.7.0
map-obj 1.0.1 1.0.1
marked 0.3.6 0.3.6
marked-terminal 1.6.2 1.7.0
media-typer 0.3.0 0.3.0
mem-fs 1.1.3 1.1.3
mem-fs-editor 2.3.0 2.3.0
meow 3.7.0 3.7.0
merge 1.2.0 1.2.0
merge-descriptors 1.0.1 1.0.1
merge-stream 1.0.0 1.0.0
method-override 2.3.6 2.3.7
methods 1.1.2 1.1.2
micromatch 2.3.11 2.3.11
mime 1.3.4 1.3.4
mime-db 1.23.0 1.23.0
mime-types 2.1.11 2.1.13
min-document 2.18.0 2.19.0
minimatch 2.0.10 2.0.10
minimist 1.2.0 1.2.0
mkdirp 0.5.1 0.5.1
mobx 2.5.0 2.6.3
mocha 2.5.3 2.5.3
module-deps 3.9.1 3.9.1
moment 2.13.0 2.17.0
morgan 1.6.1 1.6.1
ms 0.7.1 0.7.2
multimatch 2.1.0 2.1.0
multiparty 3.3.2 3.3.2
multipipe 0.1.2 0.1.2
mute-stream 0.0.5 0.0.5
negotiator 0.5.3 0.6.1
node-emoji 1.4.1 1.4.1
node-fetch 1.5.3 1.6.3
node-int64 0.4.0 0.4.0
node-notifier 4.6.1 4.6.1
node-status-codes 1.0.0 1.0.0
node-uuid 1.4.7 1.4.7
nopt 3.0.6 3.0.6
normalize-package-data 2.3.5 2.3.5
normalize-path 2.0.1 2.0.1
npmlog 2.0.4 2.0.4
nth-check 1.0.1 1.0.1
number-is-nan 1.0.0 1.0.1
nwmatcher 1.3.8 1.3.9
oauth-sign 0.8.2 0.8.2
object-assign 4.1.0 4.1.0
object.omit 2.0.0 2.0.1
on-finished 2.3.0 2.3.0
on-headers 1.0.1 1.0.1
once 1.3.3 1.3.3
onetime 1.1.0 1.1.0
opn 3.0.3 3.0.3
optimist 0.6.1 0.6.1
optionator 0.8.1 0.8.2
options 0.0.6 0.0.6
ordered-read-streams 0.3.0 0.3.0
os-homedir 1.0.1 1.0.2
os-locale 1.4.0 1.4.0
os-shim 0.1.3 0.1.3
os-tmpdir 1.0.1 1.0.2
parents 1.0.1 1.0.1
parse-diff 0.4.0 0.4.0
parse-glob 3.0.4 3.0.4
parse-json 2.2.0 2.2.0
parse5 1.5.1 1.5.1
parseurl 1.3.1 1.3.1
path-exists 1.0.0 2.1.0
path-is-absolute 1.0.0 1.0.1
path-is-inside 1.0.1 1.0.2
path-parse 1.0.5 1.0.5
path-platform 0.11.15 0.11.15
path-to-regexp 0.1.7 0.1.7
path-type 1.1.0 1.1.0
pause 0.1.0 0.1.0
pegjs 0.9.0 0.9.0
pend 1.2.0 1.2.0
pify 2.3.0 2.3.0
pinkie 2.0.4 2.0.4
pinkie-promise 2.0.1 2.0.1
plist 1.2.0 1.2.0
pluralize 1.2.1 1.2.1
prelude-ls 1.1.2 1.1.2
prepend-http 1.0.4 1.0.4
preserve 0.2.0 0.2.0
pretty-bytes 2.0.1 2.0.1
pretty-format 3.8.0 3.8.0
private 0.1.6 0.1.6
process 0.5.2 0.5.2
process-nextick-args 1.0.7 1.0.7
progress 1.1.8 1.1.8
promise 7.1.1 7.1.1
proxy-addr 1.1.2 1.1.2
prr 0.0.0 0.0.0
pseudomap 1.0.2 1.0.2
q 1.4.1 1.4.1
qr.js 0.0.0 0.0.0
qrcode.react 0.6.1 0.6.1
qs 4.0.0 6.3.0
querystringify 0.0.4 0.0.4
random-bytes 1.0.0 1.0.0
randomatic 1.1.5 1.1.5
range-parser 1.0.3 1.2.0
raw-body 2.1.7 2.1.7
rc 1.1.6 1.1.6
react-clone-referenced-element 1.0.1 1.0.1
react-deep-force-update 1.0.1 1.0.1
react-dom 15.2.0 15.4.1
react-fuzzy 0.2.3 0.2.3
react-inspector 1.1.0 1.1.1
react-komposer 1.13.1 1.13.1
react-modal 1.4.0 1.5.2
react-proxy 1.1.8 1.1.8
react-simple-di 1.2.0 1.2.0
react-static-container 1.0.1 1.0.1
react-timer-mixin 0.13.3 0.13.3
react-transform-hmr 1.0.4 1.0.4
read-all-stream 3.1.0 3.1.0
read-chunk 1.0.1 1.0.1
read-json-sync 1.1.1
read-pkg 1.1.0 1.1.0
read-pkg-up 1.0.1 1.0.1
readable-stream 1.1.14 2.0.6
readline2 1.0.1 1.0.1
rebound 0.0.13 0.0.13
recast 0.10.43 0.11.17
rechoir 0.6.2 0.6.2
redent 1.0.0 1.0.0
redeyed 1.0.0 1.0.1
redux 3.5.2 3.6.0
regenerate 1.3.1 1.3.2
regenerator-runtime 0.9.5 0.9.6
regex-cache 0.4.3 0.4.3
regexpu-core 2.0.0 2.0.0
regjsgen 0.2.0 0.2.0
regjsparser 0.1.5 0.1.5
repeat-element 1.1.2 1.1.2
repeat-string 1.5.4 1.6.1
repeating 1.1.3 2.0.1
replace-ext 0.0.1 0.0.1
request 2.75.0 2.79.0
require-directory 2.1.1 2.1.1
require-main-filename 1.0.1 1.0.1
require-uncached 1.0.2 1.0.3
requires-port 1.0.0 1.0.0
resolve 1.1.7 1.1.7
resolve-from 1.0.1 1.0.1
response-time 2.3.1 2.3.2
restore-cursor 1.0.1 1.0.1
right-align 0.1.3 0.1.3
rimraf 2.5.2 2.2.8
rndm 1.2.0 1.2.0
rsvp 3.2.1 3.2.1
run-async 0.1.0 0.1.0
rx 2.3.24 2.3.24
rx-lite 3.1.2 3.1.2
samsam 1.1.2 1.1.2
sane 1.4.1 1.4.1
sax 1.1.6 1.1.6
seek-bzip 1.0.5 1.0.5
semver 5.1.0 5.3.0
send 0.13.2 0.14.1
serve-favicon 2.3.0 2.3.2
serve-index 1.7.3 1.7.3
serve-static 1.10.3 1.11.1
set-blocking 2.0.0 2.0.0
set-immediate-shim 1.0.1 1.0.1
setprototypeof 1.0.1 1.0.2
shallowequal 0.2.2 0.2.2
shebang-regex 1.0.0
shelljs 0.5.3 0.7.5
shellwords 0.1.0 0.1.0
sigmund 1.0.1 1.0.1
signal-exit 3.0.1 3.0.1
simple-plist 0.1.4 0.1.4
sinon 1.17.6 1.17.6
slash 1.0.0 1.0.0
slice-ansi 0.0.4 0.0.4
sntp 1.0.9 1.0.9
source-map 0.4.4 0.2.0
source-map-support 0.2.10 0.4.6
sparkles 1.0.0 1.0.0
spawn-sync 1.0.15 1.0.15
spdx-correct 1.0.2 1.0.2
spdx-exceptions 1.0.4
spdx-expression-parse 1.0.2 1.0.4
spdx-license-ids 1.2.1 1.2.2
sprintf-js 1.0.3 1.0.3
sshpk 1.10.0 1.10.1
stacktrace-parser 0.1.4 0.1.4
stat-mode 0.2.2 0.2.2
statuses 1.3.0 1.2.1
stream-buffers 0.2.6 0.2.6
stream-combiner2 1.0.2 1.0.2
stream-counter 0.2.0 0.2.0
stream-shift 1.0.0 1.0.0
string_decoder 0.10.31 0.10.31
string-width 1.0.1 2.0.0
string.prototype.codepointat 0.2.0 0.2.0
stringstream 0.0.5 0.0.5
strip-ansi 3.0.1 3.0.1
strip-bom 2.0.0 2.0.0
strip-bom-stream 2.0.0 2.0.0
strip-dirs 1.1.1 1.1.1
strip-indent 1.0.1 1.0.1
strip-json-comments 1.0.4 1.0.4
strip-outer 1.0.0 1.0.0
subarg 1.0.0 1.0.0
sum-up 1.0.3 1.0.3
supports-color 2.0.0 3.1.2
symbol-observable 0.2.4 1.0.4
symbol-tree 3.1.4 3.1.4
table 3.7.8 3.8.3
tar-stream 1.5.2 1.5.2
temp 0.8.3 0.8.3
test-exclude 2.1.2 2.1.3
testcheck 0.1.4 0.1.4
text-table 0.2.0 0.2.0
textextensions 1.0.2 1.0.2
through 2.3.8 2.3.8
through2 2.0.1 0.5.1
through2-filter 2.0.0 2.0.0
time-stamp 1.0.1 1.0.1
timed-out 2.0.0 3.0.0
tmpl 1.0.4 1.0.4
to-absolute-glob 0.1.1 0.1.1
to-fast-properties 1.0.2 1.0.2
to-iso-string 0.0.2 0.0.2
topo 1.1.0 1.1.0
tough-cookie 2.3.1 2.3.2
tr46 0.0.3 0.0.3
traverse 0.6.6 0.6.6
trim-newlines 1.0.0 1.0.0
trim-repeated 1.0.0 1.0.0
tryit 1.0.2 1.0.3
tsscmp 1.0.5 1.0.5
tunnel-agent 0.4.3 0.4.3
tv4 1.2.7
tweetnacl 0.13.3 0.14.3
type-check 0.3.2 0.3.2
type-is 1.6.13 1.6.14
typedarray 0.0.6 0.0.6
ua-parser-js 0.7.10 0.7.12
uglify-js 2.7.0 2.7.4
uglify-to-browserify 1.0.2 1.0.2
uid-safe 2.1.1 2.0.0
ultron 1.0.2 1.0.2
underscore.string 3.3.4 3.3.4
unique-stream 2.2.1 2.2.1
unpipe 1.0.0 1.0.0
untildify 2.1.0 2.1.0
unzip-response 1.0.1 1.0.2
url-parse 1.1.3 1.1.7
url-parse-lax 1.0.0 1.0.0
user-home 1.1.1 2.0.0
util 0.10.3 0.10.3
util-deprecate 1.0.2 1.0.2
utils-merge 1.0.0 1.0.0
uuid 2.0.3 3.0.0
vali-date 1.0.0 1.0.0
validate-npm-package-license 3.0.1 3.0.1
vary 1.0.1 1.1.0
verror 1.3.6 1.3.6
vhost 3.0.2 3.0.2
vinyl 0.5.3 1.2.0
vinyl-assign 1.2.1 1.2.1
vinyl-file 2.0.0 2.0.0
vinyl-fs 2.4.3 2.4.4
walker 1.0.7 1.0.7
ware 1.3.0 1.3.0
watch 0.10.0 0.10.0
webidl-conversions 3.0.1 3.0.1
websocket-driver 0.6.4 0.6.5
websocket-extensions 0.1.1 0.1.1
whatwg-fetch 1.0.0 1.1.1
whatwg-url 3.0.0 3.1.0
which 1.2.10 1.2.12
which-module 1.0.0 1.0.0
window-size 0.1.0 0.2.0
wordwrap 1.0.0 0.0.3
worker-farm 1.3.1 1.3.1
wrap-ansi 2.0.0 2.0.0
wrap-fn 0.1.5 0.1.5
wrappy 1.0.2 1.0.2
write 0.2.1 0.2.1
ws 1.1.1 1.1.1
xcode 0.8.9 0.8.9
xdg-basedir 2.0.0 2.0.0
xml-name-validator 2.0.1 2.0.1
xmlbuilder 4.0.0 4.0.0
xmldoc 0.4.0 0.4.0
xmldom 0.1.22 0.1.22
xmlhttprequest 1.8.0 1.8.0
xregexp 3.1.1
xtend 4.0.1 3.0.0
y18n 3.2.1 3.2.1
yallist 2.0.0 2.0.0
yargs 3.32.0 3.10.0
yargs-parser 3.2.0 3.2.0
yauzl 2.6.0 2.7.0
yeoman-assert 2.2.1 2.2.1
yeoman-environment 1.5.3 1.5.3
yeoman-generator 0.21.2 0.21.2
yeoman-welcome 1.0.1 1.0.1

Messages

  • Expected a dep for ajv-keywords in Shrinkwrap
  • Expected a dep for ajv in Shrinkwrap
  • Expected a dep for circular-json in Shrinkwrap
  • Expected a dep for content-type-parser in Shrinkwrap
  • Expected a dep for escodegen-wallaby in Shrinkwrap
  • Expected a dep for esprima in Shrinkwrap
  • Expected a dep for esprima in Shrinkwrap
  • Expected a dep for esprima in Shrinkwrap
  • Expected a dep for html-encoding-sniffer in Shrinkwrap
  • Expected a dep for path-dirname in Shrinkwrap
  • Expected a dep for punycode in Shrinkwrap
  • Expected a dep for safe-buffer in Shrinkwrap
  • Expected a dep for whatwg-encoding in Shrinkwrap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment