Skip to content
This repository was archived by the owner on Dec 9, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: node_js

node_js:
- "8.4.0"

cache:
directories:
- node_modules

install:
- npm install

script:
- npm run lint
- npm run flow
- npm run test:coveralls
- npm run build
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
[![Build Status](https://travis-ci.org/on3iro/functionstein.svg?branch=master)](https://travis-ci.org/on3iro/functionstein)
[![Coverage Status](https://coveralls.io/repos/github/on3iro/functionstein/badge.svg?branch=master)](https://coveralls.io/github/on3iro/functionstein?branch=master)
[![npm version](https://badge.fury.io/js/functionstein.svg)](https://badge.fury.io/js/functionstein)

[![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard)

<!-- vim-markdown-toc GFM -->

* [functionstein](#functionstein)
* [API](#api)
* [FAQ](#faq)
* [What is functionstein?](#what-is-functionstein)
* [Should I use this?](#should-i-use-this)
Expand All @@ -14,6 +19,11 @@

Small toolbelt of functions (personal alternative for lodash/ramda inside small projects)


## API

[API](on3iro.github.io/functionstein)

## FAQ

### What is functionstein?
Expand Down
177 changes: 104 additions & 73 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"test": "cross-env NODE_ENV=test jest --verbose",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"coveralls": "cross-env NODE_ENV=test jest --coverage --runInBand && cat ./coverage/lcov.info | coveralls",
"test:coveralls": "cross-env NODE_ENV=test jest --coverage --runInBand && cat ./coverage/lcov.info | coveralls",
"docs": "jsdoc src -r -c jsdoc.conf.json -d docs -R README.md"
},
"babel": {
Expand Down Expand Up @@ -116,7 +116,8 @@
"plugins": "flowtype",
"ignore": [
"**/dist/",
"**/flow-typed"
"**/flow-typed",
"**/docs"
],
"globals": [
"jest",
Expand Down