diff --git a/package.json b/package.json index f532df6..3dd0e77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-sequence-viewer", - "version": "0.1.1", + "version": "0.1.2", "description": "A React wrapper around the BioJS sequence-viewer component", "main": "lib/index.js", "jsnext:main": "es/index.js", @@ -23,8 +23,8 @@ "bootstrap": "^3.3.7", "handlebars": "3.0.2", "jquery": "^3.1.0", - "node-uuid": "^1.4.7", - "sequence-viewer": "^0.2.18" + "sequence-viewer": "^0.2.18", + "uuid": "^3.0.0" }, "peerDependencies": { "react": "15.x" diff --git a/src/index.js b/src/index.js index f5d180b..54b886c 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ import React, {PropTypes, Component} from 'react'; -import { v4 } from 'node-uuid'; +import { v4 } from 'uuid'; import Bootstrap from 'bootstrap/dist/css/bootstrap.min.css'; // See nwb.config.js for some webpack magic that allows this to work.