From 753ee4ebf0b838d45f31a40834918ef87ae81741 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 27 Aug 2017 17:18:27 -0500 Subject: Add basic config --- package.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..67fb3f9 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "sorting-hat", + "version": "1.0.0-a1", + "description": "A mindwave powered sorting hat", + "scripts": { + "document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md", + "lint": "eslint .", + "start": "node bin/sorting_hat.js", + "test": "I'm really really sorry!" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/rbdr/sorting-hat.git" + }, + "keywords": [ + "eeg", + "sorting hat" + ], + "author": "Ben Beltran ", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/rbdr/sorting-hat/issues" + }, + "homepage": "https://github.com/rbdr/sorting-hat#readme", + "dependencies": { + "getenv2": "0.1.x", + "mindwave2": "1.0.x", + "ws": "3.1.x" + }, + "devDependencies": { + "eslint": "4.3.x", + "eslint-config-hapi": "10.0.x", + "eslint-plugin-hapi": "4.0.x", + "jsdoc": "3.5.x", + "jsdoc-to-markdown": "3.0.x" + }, + "main": "lib/sorting_hat.js", + "bin": { + "sorting-hat": "bin/sorting_hat.js" + } +} -- cgit