From: Markus Ånöstam Date: Wed, 27 Jan 2016 21:14:53 +0000 (+0100) Subject: Create package.json to allow installing with NPM X-Git-Tag: 0.0.5~5^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ffbec4ba517c396a2cf77108ba595c9b21e1e96;p=thirdparty%2Fbulma.git 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` --- diff --git a/package.json b/package.json new file mode 100644 index 000000000..1fd45fd4f --- /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" + } +}