diff --git a/package.json b/package.json new file mode 100644 index 0000000..5ab15c9 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "sqlite3-cluster", + "version": "1.0.0", + "description": "A wrapper to enable the use of sqlite3 with node cluster via a socket server (i.e. for Raspberry Pi 2).", + "main": "index.js", + "scripts": { + "test": "node test-cluster.js", + "start": "node server.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/coolaj86/sqlite3-cluster.git" + }, + "keywords": [ + "sqlite3", + "sqlite", + "sqlcipher", + "cluster", + "rpi2" + ], + "author": "AJ ONeal (http://coolaj86.com/)", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/coolaj86/sqlite3-cluster/issues" + }, + "homepage": "https://github.com/coolaj86/sqlite3-cluster#readme", + "dependencies": { + "sqlite3": "^3.0.9", + "ws": "^0.7.2" + } +}