Fixed package.json

This commit is contained in:
Nathan Kunicki 2017-01-01 23:53:28 +00:00
parent 109393c0cf
commit 320d8d73b1
3 changed files with 6 additions and 8 deletions

1
.npmrc
View File

@ -1 +0,0 @@
save-exact=true

View File

@ -1,6 +1,5 @@
let ToyPad = require("./src/toypad.js"); let ToyPad = require("./src/toypad.js"),
toyPad = new ToyPad();
let toyPad = new ToyPad();
toyPad.on("connect", () => { toyPad.on("connect", () => {
console.log("Toy Pad connected"); console.log("Toy Pad connected");

View File

@ -1,7 +1,7 @@
{ {
"name": "retrodimensions", "name": "node-legodimensions",
"version": "1.0.0", "version": "1.0.0",
"description": "Retro Dimensions", "description": "Lego Dimensions",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@ -9,7 +9,7 @@
"author": "Nathan Kunicki <me@nathankunicki.com>", "author": "Nathan Kunicki <me@nathankunicki.com>",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"debug": "2.6.0", "debug": "^2.6.0",
"node-hid": "0.5.1" "node-hid": "^0.5.2"
} }
} }