Skip to content

Commit fe7d7b6

Browse files
committed
Fixed link to library in example in README
Added keywords and description of package
1 parent 87b95fb commit fe7d7b6

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
# Evente Core
12
[![Maintainability](https://badgen.net/codeclimate/maintainability/evente/core)](https://codeclimate.com/github/evente/core)
23
[![Test Coverage](https://badgen.net/codeclimate/coverage/evente/core)](https://codeclimate.com/github/evente/core)
34
[![Build Status](https://badgen.net/travis/evente/core)](https://travis-ci.org/evente/core)
45
![Size](https://badgen.net/badgesize/normal/evente/core/master/dist/evente.min.js)
56
![GZip Size](https://badgen.net/badgesize/gzip/evente/core/master/dist/evente.min.js)
67

7-
`Evente` - javascript library for building reactive web applications. Library is suitable for writing web applications from scratch and also for using in existing applications. Its size is very small and cause low impact on the loading time.
8+
Core of `Evente` - javascript library for building reactive web applications. Library is suitable for writing web applications from scratch and also for using in existing applications. Its size is very small and cause low impact on the loading time.
89

910
# Features
1011
- `jQuery`-like objects with subset of well known methods: `addClass`, `attr`, `closest`, `contains`, `end`, `find`, `get`, `hasClass`, `html`, `is`, `parent`, `removeClass`, `text`, `toggleClass`, `val`
@@ -53,7 +54,7 @@ Try it on [CodePen](https://codepen.io/apoprotsky/pen/XOpzxV). Full application
5354
</div>
5455

5556
<!-- Evente library -->
56-
<script src="https://cdn.jsdelivr.net/gh/evente/core/dist/evente.min.js"></script>
57+
<script src="https://cdn.jsdelivr.net/gh/evente/core@1.0.1/dist/evente.min.js"></script>
5758

5859
<!-- Application code -->
5960
<script>

package.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
{
22
"name": "@evente/core",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
4+
"description": "Javascript library for building reactive web applications",
45
"author": "Andrey Poprotsky",
56
"license": "MIT",
67
"homepage": "https://github.com/evente/core",
78
"main": "dist/evente.js",
9+
"keywords": [
10+
"evente",
11+
"core",
12+
"javascript",
13+
"reactive"
14+
],
815
"repository": {
916
"type": "git",
10-
"url": "git+https://github.com/evente/core.git"
17+
"url": "https://github.com/evente/core.git"
1118
},
1219
"bugs": {
1320
"url": "https://github.com/evente/core/issues"

0 commit comments

Comments
 (0)