-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Perpare for publishing first version to npm
- Loading branch information
Tobias Ouwejan
committed
Oct 4, 2018
1 parent
83af7c6
commit 758922d
Showing
2 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# IDEs and editors | ||
yarn.lock | ||
.vscode | ||
|
||
# build files | ||
/dist | ||
|
||
# dependencies | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} |