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 1/2] 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" + } +} From a967e8cf1cfe33da101ae93b5b50de5e43a4329b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20=C3=85n=C3=B6stam?= Date: Wed, 27 Jan 2016 22:18:25 +0100 Subject: [PATCH 2/2] Fixed typo in main filename --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1fd45fd4..3aa16738 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "homepage": "http://bulma.io", "author": "jgthms ", "description": "Bulma is a modern CSS framework based on Flexbox", - "main": "bullma.sass", + "main": "bulma.sass", "repository": { "type": "git", "url": "git+https://github.com/jgthms/bulma.git"