diff options
| author | Ben Beltran <ben@nsovocal.com> | 2017-08-28 21:39:47 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2017-08-28 21:39:47 -0500 |
| commit | a528f2722d6da159bf8b377c10f7a76ba12e6c42 (patch) | |
| tree | 373f1e50d6234883c55a5a4da67e4c7bd3e661ce /package.json | |
| parent | a6b9035958a0e125d291ef1696c94d6a53a3c918 (diff) | |
| parent | 908fa0790aa15c58e95dbfa4e3fefc25d32d321e (diff) | |
Merge branch 'release/1.0.0'
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..0ae7bcc --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "sorting-hat", + "version": "1.0.0", + "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 <ben@nsovocal.com>", + "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" + } +} |