From 758922d7b754504e119864d92a6ed40ce5abb6d1 Mon Sep 17 00:00:00 2001 From: Tobias Ouwejan Date: Thu, 4 Oct 2018 11:51:03 +0200 Subject: [PATCH] Perpare for publishing first version to npm --- .npmignore | 9 +++++++++ package.json | 23 ++++++++++++----------- 2 files changed, 21 insertions(+), 11 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..5f9fceb --- /dev/null +++ b/.npmignore @@ -0,0 +1,9 @@ +# IDEs and editors +yarn.lock +.vscode + +# build files +/dist + +# dependencies +/node_modules diff --git a/package.json b/package.json index 73e882f..cdd39f0 100644 --- a/package.json +++ b/package.json @@ -1,27 +1,28 @@ { "name": "agnos", "version": "0.0.1", - "description": "An utility library that applies any popular UI framework to a standard html markup ", - "main": "index.js", - "scripts": {}, + "description": "An utility library that intends to applies any popular UI framework to standard html markup ", "keywords": [ "css", - "sass" + "sass", + "UI frameworks", + "agnostic" ], "author": "Tobias Ouwejan", - "license": "ISC", + "license": "MIT", + "repository": "github:tobi-or-not-tobi/agnos", + "bugs": { + "url": "https://github.com/tobi-or-not-tobi/agnos/issues" + }, + "main": "agnos", "dependencies": { - "bootstrap": "^4.1.3", - "bulma": "^0.7.1", - "foundation-sites": "^6.5.0-rc.3", - "fundamental-ui": "^1.2.2", - "materialize-css": "^1.0.0", "node-sass": "^4.9.3" }, "peerDependencies": { "bootstrap": "^4.1.3", "bulma": "^0.7.1", "materialize-css": "^1.0.0", - "foundation-sites": "^6.5.0-rc.3" + "foundation-sites": "^6.5.0-rc.3", + "fundamental-ui": "^1.2.2" } }