From 4b3d812031dd07c251623d7155159115e99d2671 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 28 Aug 2017 22:54:26 -0500 Subject: Commit everything hastily I left evertything until the last minute, so I didn't have a chance to do it nicely. SORRY. --- package.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..95d5e67 --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "sorting-hat-renderer", + "version": "1.0.0-a1", + "description": "Frontend for a mindwave powered sorting hat", + "scripts": { + "build": "webpack --config ./config/webpack.js", + "document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md", + "lint": "eslint .", + "test": "I'm really really sorry!", + "watch": "webpack --watch --config ./config/webpack.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/rbdr/sorting-hat-renderer.git" + }, + "keywords": [ + "eeg", + "sorting hat" + ], + "author": "Ben Beltran ", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/rbdr/sorting-hat-renderer/issues" + }, + "homepage": "https://github.com/rbdr/sorting-hat-renderer#readme", + "dependencies": { + "vue": "2.4.x" + }, + "devDependencies": { + "babel-core": "6.26.x", + "babel-loader": "7.1.x", + "babel-preset-es2017": "6.24.x", + "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", + "webpack": "3.5.x" + } +} -- cgit From 21f11b5ae525f52fd1a2bf1a741ad79bfccb1278 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 30 Aug 2017 00:27:00 -0500 Subject: update version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index 95d5e67..57fa9fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sorting-hat-renderer", - "version": "1.0.0-a1", + "version": "1.0.0", "description": "Frontend for a mindwave powered sorting hat", "scripts": { "build": "webpack --config ./config/webpack.js", -- cgit