GT2/GT2-Android/node_modules/dot-case/package.json

104 lines
3.9 KiB
JSON
Raw Normal View History

{
"_args": [
[
{
"raw": "dot-case@^1.1.0",
"scope": null,
"escapedName": "dot-case",
"name": "dot-case",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/change-case"
]
],
"_from": "dot-case@>=1.1.0 <2.0.0",
"_id": "dot-case@1.1.2",
"_inCache": true,
"_location": "/dot-case",
"_nodeVersion": "5.2.0",
"_npmUser": {
"name": "blakeembrey",
"email": "hello@blakeembrey.com"
},
"_npmVersion": "3.3.12",
"_phantomChildren": {},
"_requested": {
"raw": "dot-case@^1.1.0",
"scope": null,
"escapedName": "dot-case",
"name": "dot-case",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/change-case"
],
"_resolved": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.2.tgz",
"_shasum": "1e73826900de28d6de5480bc1de31d0842b06bec",
"_shrinkwrap": null,
"_spec": "dot-case@^1.1.0",
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/change-case",
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"bugs": {
"url": "https://github.com/blakeembrey/dot-case/issues"
},
"dependencies": {
"sentence-case": "^1.1.2"
},
"description": "Dot case a string",
"devDependencies": {
"istanbul": "^0.3.0",
"mocha": "^2.1.0",
"pre-commit": "^1.0.1",
"standard": "^3.3.0"
},
"directories": {},
"dist": {
"shasum": "1e73826900de28d6de5480bc1de31d0842b06bec",
"tarball": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.2.tgz"
},
"files": [
"dot-case.js",
"dot-case.d.ts",
"LICENSE"
],
"gitHead": "c8422493e26ab538e68ccb63c8a5dee116e100f1",
"homepage": "https://github.com/blakeembrey/dot-case",
"keywords": [
"dot",
"case",
"period"
],
"license": "MIT",
"main": "dot-case.js",
"maintainers": [
{
"name": "blakeembrey",
"email": "hello@blakeembrey.com"
}
],
"name": "dot-case",
"optionalDependencies": {},
"readme": "# Dot 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\nDot case a string.\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 dot-case --save\n```\n\n## Usage\n\n```javascript\nvar dotCase = require('dot-case')\n\ndotCase('string') //=> \"string\"\ndotCase('camelCase') //=> \"camel.case\"\ndotCase('sentence case') //=> \"sentence.case\"\n\ndotCase('MY STRING', 'tr') //=> \"my.strıng\"\n```\n\n## Typings\n\nIncludes a [TypeScript definition](dot-case.d.ts).\n\n## License\n\nMIT\n\n[npm-image]: https://img.shields.io/npm/v/dot-case.svg?style=flat\n[npm-url]: https://npmjs.org/package/dot-case\n[downloads-image]: https://img.shields.io/npm/dm/dot-case.svg?style=flat\n[downloads-url]: https://npmjs.org/package/dot-case\n[travis-image]: https://img.shields.io/travis/blakeembrey/dot-case.svg?style=flat\n[travis-url]: https://travis-ci.org/blakeembrey/dot-case\n[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/dot-case.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/blakeembrey/dot-case?branch=master\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/dot-case.git"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run test-cov",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test-std": "mocha -- -R spec --bail"
},
"typings": "dot-case.d.ts",
"version": "1.1.2"
}