Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/coverage/
/node_modules/
/npm-debug.log
.env
1 change: 0 additions & 1 deletion .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"requireSpaceBeforeKeywords": ["else", "catch", "finally"],
"requireSpacesInConditionalExpression": true,
"requireSpacesInFunction": {"beforeOpeningCurlyBrace": true},
"requireTrailingComma": {"ignoreSingleLine": true},
"validateLineBreaks": "LF",
"validateQuoteMarks": {"escape": true, "mark": "'"}
}
31 changes: 31 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Contributing

Instructions for contributing to [plaid-node][1]. A node.js client library for the [Plaid API][2].

## Setup

1. From the `plaid-node-apiv2` directory, create the `.env` file, which will be used to configure the Plaid client.

```
cp .env.example .env
```

2. Go to the [Plaid Dashboard](https://dashboard.plaid.com/) and copy and paste your `client_id`, `public_key`, and `secret`
into `.env` using a text editor of your choice. Your account must be enabled for sandbox access.

3. Install the necessary dependencies.

```
make setup
```

## Running Tests

```console
$ make test
```

Code coverage information is written to `/coverage`.

[1]: https://github.plaid.com/plaid/plaid-node-apiv2
[2]: https://plaid.com
2 changes: 1 addition & 1 deletion LICENSE
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2016 Plaid Technologies, Inc. <support@plaid.com>
Copyright (c) 2017 Plaid Technologies, Inc. <support@plaid.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ setup:

.PHONY: test
test:
$(ISTANBUL) cover node_modules/.bin/_mocha -- --timeout 10000
$(ISTANBUL) cover node_modules/.bin/_mocha -- --timeout 20000
24 changes: 0 additions & 24 deletions PUBLISHING.md

This file was deleted.

Loading