-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from mntnr/feat/audit-edits
docs: Add Contributing and package.json files, and some small edits
- Loading branch information
Showing
3 changed files
with
48 additions
and
4 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,11 @@ | ||
# Contributing | ||
|
||
Please conform to the [Code of Conduct](CODE_OF_CONDUCT.md). | ||
|
||
### Note on Patches/Pull Requests | ||
|
||
* Fork the project. | ||
* Make your feature addition or bug fix. | ||
* Commit, do not mess with version, or history. | ||
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) | ||
* Send me a pull request. Bonus points for topic branches. |
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
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,25 @@ | ||
{ | ||
"name": "split-testing", | ||
"version": "1.0.0", | ||
"description": "📉 Clientside A/B testing library", | ||
"main": "split.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/splitrb/split.js.git" | ||
}, | ||
"keywords": [ | ||
"split", | ||
"ab", | ||
"testing", | ||
"clientside" | ||
], | ||
"author": "Andrew Nesbitt", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/splitrb/split.js/issues" | ||
}, | ||
"homepage": "https://github.com/splitrb/split.js#readme" | ||
} |