From 8e31641ea467c850800a64e4186b6eee33d67849 Mon Sep 17 00:00:00 2001 From: Andy Bell Date: Thu, 2 Aug 2018 22:12:50 +0100 Subject: [PATCH] Package and editorconfig --- .editorconfig | 7 +++++++ package.json | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .editorconfig create mode 100644 package.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2eddd4a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +indent_style = space +end_of_line = lf +indent_size = 4 +charset = utf-8 diff --git a/package.json b/package.json new file mode 100644 index 0000000..db61dc0 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "beedle", + "version": "1.0.0", + "description": "Beedle is a tiny little library to help you manage state across your application. Inspired by great libraries like Vuex and Redux, Beedle creates a central store that enables you to both better control and cascade state across your application.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/hankchizljaw/beedle.git" + }, + "keywords": [], + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/hankchizljaw/beedle/issues" + }, + "homepage": "https://github.com/hankchizljaw/beedle#readme" +}