GT2/GT2-iOS/node_modules/sentence-case/package.json

124 lines
4.6 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"_args": [
[
{
"raw": "sentence-case@^1.1.1",
"scope": null,
"escapedName": "sentence-case",
"name": "sentence-case",
"rawSpec": "^1.1.1",
"spec": ">=1.1.1 <2.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/change-case"
]
],
"_from": "sentence-case@>=1.1.1 <2.0.0",
"_id": "sentence-case@1.1.3",
"_inCache": true,
"_location": "/sentence-case",
"_nodeVersion": "5.2.0",
"_npmUser": {
"name": "blakeembrey",
"email": "hello@blakeembrey.com"
},
"_npmVersion": "3.3.12",
"_phantomChildren": {},
"_requested": {
"raw": "sentence-case@^1.1.1",
"scope": null,
"escapedName": "sentence-case",
"name": "sentence-case",
"rawSpec": "^1.1.1",
"spec": ">=1.1.1 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/camel-case",
"/change-case",
"/dot-case",
"/param-case",
"/path-case",
"/snake-case",
"/title-case"
],
"_resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.3.tgz",
"_shasum": "8034aafc2145772d3abe1509aa42c9e1042dc139",
"_shrinkwrap": null,
"_spec": "sentence-case@^1.1.1",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/change-case",
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"bugs": {
"url": "https://github.com/blakeembrey/sentence-case/issues"
},
"dependencies": {
"lower-case": "^1.1.1"
},
"description": "Sentence case a string",
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"pre-commit": "^1.0.1",
"standard": "^2.3.1",
"xregexp": "^2.0.0"
},
"directories": {},
"dist": {
"shasum": "8034aafc2145772d3abe1509aa42c9e1042dc139",
"tarball": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.3.tgz"
},
"files": [
"sentence-case.js",
"sentence-case.d.ts",
"vendor",
"LICENSE"
],
"gitHead": "525ac200ef1490844dc36d1d1d5d1620593a3cf4",
"homepage": "https://github.com/blakeembrey/sentence-case",
"keywords": [
"sentence",
"case",
"space"
],
"license": "MIT",
"main": "sentence-case.js",
"maintainers": [
{
"name": "blakeembrey",
"email": "hello@blakeembrey.com"
}
],
"name": "sentence-case",
"optionalDependencies": {},
"pre-commit": [
"build",
"stage-vendor",
"test"
],
"readme": "# Sentence Case\n\n[![NPM version][npm-image]][npm-url]\n[![NPM downloads][downloads-image]][downloads-url]\n[![Build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n\nTransform a string to lower space cased. Optional locale and replacement character supported.\n\nSupports Unicode (non-ASCII characters) and non-string entities, such as objects with a `toString` property, numbers and booleans. Empty values (`null` and `undefined`) will result in an empty string.\n\n## Installation\n\n```\nnpm install sentence-case --save\n```\n\n## Usage\n\n```javascript\nvar sentenceCase = require('sentence-case')\n\nsentenceCase(null) //=> \"\"\nsentenceCase('string') //=> \"string\"\nsentenceCase('dot.case') //=> \"dot case\"\nsentenceCase('camelCase') //=> \"camel case\"\nsentenceCase('Beyoncé Knowles') //=> \"beyoncé knowles\"\n\nsentenceCase('A STRING', 'tr') //=> \"a strıng\"\n\nsentenceCase('HELLO WORLD!', null, '_') //=> \"hello_world\"\n```\n\n## Typings\n\nIncludes a [TypeScript definition](sentence-case.d.ts).\n\n## License\n\nMIT\n\n[npm-image]: https://img.shields.io/npm/v/sentence-case.svg?style=flat\n[npm-url]: https://npmjs.org/package/sentence-case\n[downloads-image]: https://img.shields.io/npm/dm/sentence-case.svg?style=flat\n[downloads-url]: https://npmjs.org/package/sentence-case\n[travis-image]: https://img.shields.io/travis/blakeembrey/sentence-case.svg?style=flat\n[travis-url]: https://travis-ci.org/blakeembrey/sentence-case\n[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/sentence-case.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/blakeembrey/sentence-case?branch=master\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/sentence-case.git"
},
"scripts": {
"build": "node build.js",
"lint": "standard",
"mocha": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"stage-vendor": "git add vendor",
"test": "npm run build && npm run lint && npm run mocha"
},
"standard": {
"ignore": [
"coverage/**"
]
},
"typings": "sentence-case.d.ts",
"version": "1.1.3"
}