Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dorianmariecom/8f724aba4a4cd5cebf75909cf2bc3ce5 to your computer and use it in GitHub Desktop.
Save dorianmariecom/8f724aba4a4cd5cebf75909cf2bc3ce5 to your computer and use it in GitHub Desktop.
require 'json'
json = JSON.parse(File.read('package.json'))
json['devDependencies'].transform_values! { '*' }
json['optionalDependencies'].transform_values! { '*' }
File.write('package.json', JSON.pretty_generate(json))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment