diff --git a/package-lock.json b/package-lock.json index eadec93..2fbd0f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "i2c", "version": "0.3.0", + "hasInstallScript": true, "license": "BSD-3-Clause-Attribution", "dependencies": { "bindings": "^1.5.0", diff --git a/package.json b/package.json index 4d40dc3..34199c7 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,34 @@ "author": "Kelly Korevec", "repository": { "type": "git", - "url": "http://github.com/korevec/node-i2c.git" + "url": "https://github.com/korevec/node-i2c.git" }, "license": "BSD-3-Clause-Attribution", "dependencies": { "bindings": "^1.5.0", "nan": "^2.24.0" }, - "engine": "node >= 18.0.0" + "engine": "node >= 18.0.0", + "keywords": [ + "i2c", + "raspberry pi", + "beaglebone", + "raspi" + ], + "homepage": "https://github.com/korevec/node-i2c", + "bugs": { + "url": "https://github.com/korevec/node-i2c/issues" + }, + "contributors": [ + { + "name": "alphacharlie" + }, + { + "name": "J-Cat" + } + ], + "scripts": { + "test": "node -e \"require('./main.js')\"", + "install": "node-gyp rebuild" + } }