From 9ffbec4ba517c396a2cf77108ba595c9b21e1e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20=C3=85n=C3=B6stam?= Date: Wed, 27 Jan 2016 22:14:53 +0100 Subject: [PATCH] Create package.json to allow installing with NPM Just adding a package.json to the repository will allow it to be installed through NPM by providing the git user and repo name, e.g. `npm install jgthms/bulma --save` --- package.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 00000000..1fd45fd4 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "bulma", + "version": "0.0.4", + "homepage": "http://bulma.io", + "author": "jgthms ", + "description": "Bulma is a modern CSS framework based on Flexbox", + "main": "bullma.sass", + "repository": { + "type": "git", + "url": "git+https://github.com/jgthms/bulma.git" + }, + "license": "MIT", + "keywords": [ + "css", + "sass", + "flexbox", + "responsive", + "framework" + ], + "bugs": { + "url": "https://github.com/jgthms/bulma/issues" + } +}