Skip to content

Commit 81bfcac

Browse files
committed
docs: Adding Contributing and package manifest
1 parent aed9081 commit 81bfcac

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

CONTRIBUTING.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contributing
2+
3+
Please conform to the [Code of Conduct](CODE_OF_CONDUCT.md).
4+
5+
### Note on Patches/Pull Requests
6+
7+
* Fork the project.
8+
* Make your feature addition or bug fix.
9+
* Commit, do not mess with version, or history.
10+
(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)
11+
* Send me a pull request. Bonus points for topic branches.

package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "split-testing",
3+
"version": "1.0.0",
4+
"description": "📉 Clientside A/B testing library",
5+
"main": "split.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/splitrb/split.js.git"
12+
},
13+
"keywords": [
14+
"split",
15+
"ab",
16+
"testing",
17+
"clientside"
18+
],
19+
"author": "Andrew Nesbitt",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/splitrb/split.js/issues"
23+
},
24+
"homepage": "https://github.com/splitrb/split.js#readme"
25+
}

0 commit comments

Comments
 (0)