Skip to content

Commit cbdc25f

Browse files
committed
chore(init): initial commit
0 parents  commit cbdc25f

15 files changed

+6225
-0
lines changed

.commitlintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['travi']};

.czrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"path":"./node_modules/cz-conventional-changelog"}

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
indent_style = space
10+
indent_size = 2
11+
end_of_line = lf
12+
insert_final_newline = true

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/settings.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_extends: .github
2+
repository:
3+
name: brand
4+
description: branding primitives for the travi.org family of sites
5+
homepage: 'https://npm.im/@travi/brand'
6+
private: false

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules/
2+

.huskyrc.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hooks":{"pre-commit":"npm test","commit-msg":"commitlint -e"}}

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
update-notifier=false

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v12

.remarkrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
exports.plugins = [
2+
'remark-preset-lint-travi'
3+
];

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: ~> 1.0
2+
notifications:
3+
email: false
4+
import:
5+
- source: 'form8ion/.travis-ci:node.yml'
6+
- source: 'travi-org/.travis-ci:authenticated-semantic-release.yml'

LICENSE

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
MIT License Copyright (c) 2019 Matt Travi
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7+
the Software, and to permit persons to whom the Software is furnished to do so,
8+
subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# brand
2+
3+
branding primitives for the travi.org family of sites
4+
5+
<!-- status badges -->
6+
[![Build Status][ci-badge]][ci-link]
7+
8+
## Usage
9+
10+
<!-- consumer badges -->
11+
[![npm][npm-badge]][npm-link]
12+
[![MIT license][license-badge]][license-link]
13+
14+
### Installation
15+
16+
```sh
17+
$ npm install @travi/brand --save-prod
18+
```
19+
20+
## Contributing
21+
22+
<!-- contribution badges -->
23+
[![Conventional Commits][commit-convention-badge]][commit-convention-link]
24+
[![Commitizen friendly][commitizen-badge]][commitizen-link]
25+
[![semantic-release][semantic-release-badge]][semantic-release-link]
26+
[![PRs Welcome][PRs-badge]][PRs-link]
27+
28+
### Dependencies
29+
30+
```sh
31+
$ nvm install
32+
$ npm install
33+
```
34+
35+
### Verification
36+
37+
```sh
38+
$ npm test
39+
```
40+
41+
[npm-link]: https://www.npmjs.com/package/@travi/brand
42+
[npm-badge]: https://img.shields.io/npm/v/@travi/brand.svg
43+
[license-link]: LICENSE
44+
[license-badge]: https://img.shields.io/github/license/travi-org/brand.svg
45+
[ci-link]: https://travis-ci.com/travi-org/brand
46+
[ci-badge]: https://img.shields.io/travis/com/travi-org/brand/master.svg
47+
[commit-convention-link]: https://conventionalcommits.org
48+
[commit-convention-badge]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
49+
[commitizen-link]: http://commitizen.github.io/cz-cli/
50+
[commitizen-badge]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
51+
[semantic-release-link]: https://github.com/semantic-release/semantic-release
52+
[semantic-release-badge]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
53+
[PRs-link]: http://makeapullrequest.com
54+
[PRs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg

0 commit comments

Comments
 (0)