chore: meta files

This commit is contained in:
Stephan Bönnemann 2015-02-02 04:12:57 +01:00
parent 012dce2641
commit f31a5dfd04
4 changed files with 82 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules
*.log

17
.travis.yml Normal file
View File

@ -0,0 +1,17 @@
language: node_js
node_js:
- '0.10'
sudo: false
cache:
directories:
- node_modules
notifications:
emails: false
deploy:
provider: npm
email: stephan@boennemann.me
api_key:
secure: Lq1FZweaNr/Ah8M7h3oWQ59HTswzvcksTUfzWb/dpqNn5FECN9I+4gi79EQPD62ZbJDCuDHY0EEEDLdnaB1z8N7kOj1RtmvC1k0teTEXFsGBPS4evXakRj+AfoBAGsTaXHqBYBOvYBxJT2Md/UoOgPSQjtAdZSNsmoFb1xkngQ0=
on:
branch: master
repo: boennemann/semantic-release

23
README.md Normal file
View File

@ -0,0 +1,23 @@
# semantic-release
[![Build Status](https://travis-ci.org/boennemann/semantic-release.svg)](https://travis-ci.org/boennemann/semantic-release)
[![Dependency Status](https://david-dm.org/boennemann/semantic-release.svg)](https://david-dm.org/boennemann/semantic-release)
[![devDependency Status](https://david-dm.org/boennemann/semantic-release/dev-status.svg)](https://david-dm.org/boennemann/semantic-release#info=devDependencies)
[![NPM](https://nodei.co/npm/semantic-release.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/semantic-release/)
```bash
npm i semantic-release
```
`semantic-release` provides "prepublish" and "postpublish" hooks so you automatically release the correct version.
Add this to your `package.json` for maximum comfort:
```json
"scripts": {
"prepublish": "semantic-release pre",
"postpublish": "semantic-release post"
}
```
MIT License
2015 Stephan Bönnemann

40
package.json Normal file
View File

@ -0,0 +1,40 @@
{
"name": "semantic-release",
"description": "semantic semver compliant package publishing",
"author": "Stephan Bönnemann <stephan@boennemann.me>",
"bin": "./bin/semantic-release",
"bugs": {
"url": "https://github.com/boennemann/semantic-release/issues"
},
"dependencies": {
"conventional-changelog": "0.0.11",
"github": "^0.2.3",
"minimist": "^1.1.0",
"parse-github-repo-url": "^1.0.0",
"semver": "^4.2.0"
},
"devDependencies": {
"standard": "^2.3.1"
},
"homepage": "https://github.com/boennemann/semantic-release",
"keywords": [
"release",
"publish",
"module",
"package",
"semver",
"version",
"changelog"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/boennemann/semantic-release.git"
},
"scripts": {
"prepublish": "semantic-release pre",
"postpublish": "semantic-release post",
"test": "standard"
}
}