Skip to content

Commit

Permalink
Merge pull request #88 from lycan-city/updating-packages
Browse files Browse the repository at this point in the history
Updating packages
  • Loading branch information
vetom authored Sep 6, 2018
2 parents ded1218 + 39c4bb3 commit 2ca7c06
Show file tree
Hide file tree
Showing 9 changed files with 1,344 additions and 9,721 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ root = true
end_of_line = lf
insert_final_newline = true

# 4 space indentation
# 2 space indentation
[*.js]
indent_style = space
indent_size = 4
indent_size = 2
charset = utf-8

# Matches the exact files either package.json or .travis.yml
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist
.vscode
.vscode
.DS_Store
6 changes: 4 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
source
tests
tests
.editorconfig
.eslintrc
.travis.yml
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
language: node_js
node_js:
- "7"
- "10"
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![Build Status](https://travis-ci.org/lycan-city/werewolf-brain.svg?branch=master)](https://travis-ci.org/lycan-city/werewolf-brain)
[![bitHound Overall Score](https://www.bithound.io/github/lycan-city/werewolf-brain/badges/score.svg)](https://www.bithound.io/github/lycan-city/werewolf-brain)

# Werewolf-Brain
**Werewolf-Brain** (or **wwb**) is a JavaScript library for the creation of
Expand Down Expand Up @@ -80,13 +79,13 @@ Game for ***p*** players, weight ***w*** and the cards ( ***v*** Villagers and
### Get all template registered
```javascript
const wwb = require('werewolf-brain');
const templates = wwb.getAllDecks();
const templates = wwb.getDecks();
```

### Get all cards registered
```javascript
const wwb = require('werewolf-brain');
const cards = wwb.getAllCards();
const cards = wwb.getCards();
```

#### Cards Object
Expand Down
Loading

0 comments on commit 2ca7c06

Please sign in to comment.