116 lines
4.4 KiB
JSON
116 lines
4.4 KiB
JSON
{
|
||
"_args": [
|
||
[
|
||
{
|
||
"raw": "camel-case@^1.1.1",
|
||
"scope": null,
|
||
"escapedName": "camel-case",
|
||
"name": "camel-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": "camel-case@>=1.1.1 <2.0.0",
|
||
"_id": "camel-case@1.2.2",
|
||
"_inCache": true,
|
||
"_location": "/camel-case",
|
||
"_nodeVersion": "5.2.0",
|
||
"_npmUser": {
|
||
"name": "blakeembrey",
|
||
"email": "hello@blakeembrey.com"
|
||
},
|
||
"_npmVersion": "3.3.12",
|
||
"_phantomChildren": {},
|
||
"_requested": {
|
||
"raw": "camel-case@^1.1.1",
|
||
"scope": null,
|
||
"escapedName": "camel-case",
|
||
"name": "camel-case",
|
||
"rawSpec": "^1.1.1",
|
||
"spec": ">=1.1.1 <2.0.0",
|
||
"type": "range"
|
||
},
|
||
"_requiredBy": [
|
||
"/change-case",
|
||
"/pascal-case"
|
||
],
|
||
"_resolved": "https://registry.npmjs.org/camel-case/-/camel-case-1.2.2.tgz",
|
||
"_shasum": "1aca7c4d195359a2ce9955793433c6e5542511f2",
|
||
"_shrinkwrap": null,
|
||
"_spec": "camel-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/camel-case/issues"
|
||
},
|
||
"dependencies": {
|
||
"sentence-case": "^1.1.1",
|
||
"upper-case": "^1.1.1"
|
||
},
|
||
"description": "Camel case a string",
|
||
"devDependencies": {
|
||
"istanbul": "^0.3.0",
|
||
"mocha": "^2.2.1",
|
||
"pre-commit": "^1.0.6",
|
||
"standard": "^3.3.0"
|
||
},
|
||
"directories": {},
|
||
"dist": {
|
||
"shasum": "1aca7c4d195359a2ce9955793433c6e5542511f2",
|
||
"tarball": "https://registry.npmjs.org/camel-case/-/camel-case-1.2.2.tgz"
|
||
},
|
||
"files": [
|
||
"camel-case.js",
|
||
"camel-case.d.ts",
|
||
"LICENSE"
|
||
],
|
||
"gitHead": "7621750e383be5e4b553077a53d546a077fab872",
|
||
"homepage": "https://github.com/blakeembrey/camel-case",
|
||
"keywords": [
|
||
"camel",
|
||
"case",
|
||
"camelcase",
|
||
"camel-case",
|
||
"dash",
|
||
"hyphen",
|
||
"dot",
|
||
"underscore",
|
||
"lodash",
|
||
"separator",
|
||
"string",
|
||
"text",
|
||
"convert"
|
||
],
|
||
"license": "MIT",
|
||
"main": "camel-case.js",
|
||
"maintainers": [
|
||
{
|
||
"name": "blakeembrey",
|
||
"email": "hello@blakeembrey.com"
|
||
}
|
||
],
|
||
"name": "camel-case",
|
||
"optionalDependencies": {},
|
||
"readme": "# Camel 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\nCamel case a string. Explicitly adds a single underscore between groups of numbers to maintain readability and reversibility (E.g. `1.20.5` becomes `1_20_5`, not `1205`), by default.\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### Node\n\n```\nnpm install camel-case --save\n```\n\n## Usage\n\n```javascript\nvar camelCase = require('camel-case')\n\ncamelCase('string') //=> \"string\"\ncamelCase('dot.case') //=> \"dotCase\"\ncamelCase('PascalCase') //=> \"pascalCase\"\ncamelCase('version 1.2.10') //=> \"version1_2_10\"\n\ncamelCase('STRING 1.2', 'tr') //=> \"strıng1_2\"\n\ncamelCase('string 1 2 3', null, true) //=> \"string123\"\n```\n\n## Typings\n\nIncludes a [TypeScript definition](camel-case.d.ts).\n\n## License\n\nMIT\n\n[npm-image]: https://img.shields.io/npm/v/camel-case.svg?style=flat\n[npm-url]: https://npmjs.org/package/camel-case\n[downloads-image]: https://img.shields.io/npm/dm/camel-case.svg?style=flat\n[downloads-url]: https://npmjs.org/package/camel-case\n[travis-image]: https://img.shields.io/travis/blakeembrey/camel-case.svg?style=flat\n[travis-url]: https://travis-ci.org/blakeembrey/camel-case\n[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/camel-case.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/blakeembrey/camel-case?branch=master\n",
|
||
"readmeFilename": "README.md",
|
||
"repository": {
|
||
"type": "git",
|
||
"url": "git://github.com/blakeembrey/camel-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": "camel-case.d.ts",
|
||
"version": "1.2.2"
|
||
}
|