Content-Length: 522502 | pFad | http://github.com/jonschlinkert/romanize/commit/1e8df7a28a212c6c0d1dd049e1c4cb90c6fcbc08

CC run update · jonschlinkert/romanize@1e8df7a · GitHub
Skip to content

Commit

Permalink
run update
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Apr 23, 2017
1 parent f9083ef commit 1e8df7a
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 98 deletions.
13 changes: 2 additions & 11 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# http://editorconfig.org
root = true

[*]
Expand All @@ -9,14 +8,6 @@ indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
[{**/{actual,fixtures,expected,templates}/**,*.md}]
trim_trailing_whitespace = false
insert_final_newline = false

[test/**]
trim_trailing_whitespace = false
insert_final_newline = false

[templates/**]
trim_trailing_whitespace = false
insert_final_newline = false
insert_final_newline = false
7 changes: 2 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"handle-callback-err": [2, "^(err|error)$" ],
"indent": [2, 2, { "SwitchCase": 1 }],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": [2, { "before": true, "after": true }],
"new-cap": [2, { "newIsCap": true, "capIsNew": false }],
"new-parens": 2,
"no-array-constructor": 2,
Expand All @@ -49,7 +50,6 @@
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-empty-label": 2,
"no-eval": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
Expand All @@ -71,7 +71,7 @@
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-multiple-empty-lines": [2, { "max": 1 }],
"no-native-reassign": 2,
"no-native-reassign": 0,
"no-negated-in-lhs": 2,
"no-new": 2,
"no-new-func": 2,
Expand Down Expand Up @@ -108,13 +108,10 @@
"radix": 2,
"semi": [2, "always"],
"semi-spacing": [2, { "before": false, "after": true }],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-before-keywords": [2, "always"],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
"use-isnan": 2,
Expand Down
69 changes: 22 additions & 47 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,52 +1,27 @@
# Numerous always-ignore extensions
*.csv
*.dat
*.diff
*.err
*.gz
*.log
*.orig
*.out
*.pid
*.rar
*.rej
*.seed
*.swo
*.swp
*.vi
*.yo-rc.json
*.zip
*~
.ruby-version
lib-cov
npm-debug.log
# always ignore files
*.DS_Store
*.sublime-*

# Always-ignore dirs
/bower_components/
/node_modules/
/temp/
/tmp/
/vendor/
_gh_pages
# test related, or directories generated by tests
test/actual
actual
coverage
.nyc*

# OS or Editor folders
*.esproj
*.komodoproject
.komodotools
*.sublime-*
._*
.cache
.DS_Store
.idea
.project
.settings
.tmproj
nbproject
Thumbs.db
# npm
node_modules
npm-debug.log

# grunt-html-validation
validation-status.json
validation-report.json
# yarn
yarn.lock
yarn-error.log

# misc
TODO.md
_gh_pages
_draft
_drafts
bower_components
vendor
temp
tmp
TODO.md
18 changes: 11 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
sudo: false
os:
- linux
- osx
language: node_js
node_js:
- "stable"
- "5"
- "4"
- "0.12"
- "0.10"
- node
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
matrix:
allow_failures: []
fast_finish: true
allow_failures:
- node_js: "0.10"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2016, Jon Schlinkert.
Copyright (c) 2014-2017, Jon Schlinkert

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
60 changes: 41 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# romanize [![NPM version](https://img.shields.io/npm/v/romanize.svg)](https://www.npmjs.com/package/romanize) [![Build Status](https://img.shields.io/travis/jonschlinkert/romanize.svg)](https://travis-ci.org/jonschlinkert/romanize)
# romanize [![NPM version](https://img.shields.io/npm/v/romanize.svg?style=flat)](https://www.npmjs.com/package/romanize) [![NPM monthly downloads](https://img.shields.io/npm/dm/romanize.svg?style=flat)](https://npmjs.org/package/romanize) [![NPM total downloads](https://img.shields.io/npm/dt/romanize.svg?style=flat)](https://npmjs.org/package/romanize) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/romanize.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/romanize)

> Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc)
## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm i romanize --save
$ npm install --save romanize
```

Install with [yarn](https://yarnpkg.com):

```sh
$ yarn add romanize
```

Based on this [blog post](http://blog.stevenlevithan.com/archives/javascript-roman-numeral-converter) by [Steven Levithan](https://github.com/slevithan).
Expand All @@ -22,35 +27,52 @@ console.log(romanize(58));
//=> 'LVIII'
```

## Related projects
## About
### Related projects
- [deromanize](https://www.npmjs.com/package/deromanize): Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc) | [homepage](https://github.com/jonschlinkert/deromanize "Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc)")
- [repeat-string](https://www.npmjs.com/package/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string. | [homepage](https://github.com/jonschlinkert/repeat-string "Repeat the given string n times. Fastest implementation for repeating a string.")
- [romanize](https://www.npmjs.com/package/romanize): Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc) | [homepage](https://github.com/jonschlinkert/romanize "Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc)")
- [to-regex-range](https://www.npmjs.com/package/to-regex-range): Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than… [more](https://github.com/jonschlinkert/to-regex-range) | [homepage](https://github.com/jonschlinkert/to-regex-range "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.87 million test assertions.")

### Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).

You might also be interested in these projects:
[deromanize](https://www.npmjs.com/package/deromanize): Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc) | [homepage](https://github.com/jonschlinkert/deromanize)
### Contributors
| **Commits** | **Contributor** |
| --- | --- |
| 8 | [jonschlinkert](https://github.com/jonschlinkert) |
| 1 | [kemitchell](https://github.com/kemitchell) |

## Running tests
### Release history

Install dev dependencies:
### Building docs
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_

To generate the readme, run the following command:

```sh
$ npm i -d && npm test
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```

## Contributing
### Running tests

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/romanize/issues/new).
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

## Author
```sh
$ npm install && npm test
```

### Author
**Jon Schlinkert**

* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
+ [github/jonschlinkert](https://github.com/jonschlinkert)
+ [twitter/jonschlinkert](https://twitter.com/jonschlinkert)

## License

Copyright © 2016 [Jon Schlinkert](https://github.com/jonschlinkert)
Released under the MIT license.
### License
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).

***

_This file was generated by [verb](https://github.com/verbose/verb) on January 25, 2016._
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.5.0, on April 23, 2017._

30 changes: 22 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"version": "0.1.2",
"homepage": "https://github.com/jonschlinkert/romanize",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
"Kyle Mitchell <kyle@kemitchell.com> (https://kemitchell.com)"
],
"repository": "jonschlinkert/romanize",
"bugs": {
"url": "https://github.com/jonschlinkert/romanize/issues"
Expand All @@ -20,26 +24,36 @@
"test": "mocha"
},
"devDependencies": {
"mocha": "*"
"gulp-format-md": "^0.1.12",
"mocha": "^3.2.0"
},
"keywords": [
"arabic",
"number",
"numbers",
"numeral",
"numerals",
"roman"
"roman",
"romanize"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"deromanize"
"deromanize",
"repeat-string",
"to-regex-range"
]
},
"plugins": [
"gulp-format-md"
],
"toc": false,
"layout": "default"
"lint": {
"reflinks": true
}
}
}

0 comments on commit 1e8df7a

Please sign in to comment.








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/jonschlinkert/romanize/commit/1e8df7a28a212c6c0d1dd049e1c4cb90c6fcbc08

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy