117 lines
3.8 KiB
JSON
117 lines
3.8 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "camelcase@^4.1.0",
|
|
"scope": null,
|
|
"escapedName": "camelcase",
|
|
"name": "camelcase",
|
|
"rawSpec": "^4.1.0",
|
|
"spec": ">=4.1.0 <5.0.0",
|
|
"type": "range"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/yargs"
|
|
]
|
|
],
|
|
"_from": "camelcase@>=4.1.0 <5.0.0",
|
|
"_id": "camelcase@4.1.0",
|
|
"_inCache": true,
|
|
"_location": "/camelcase",
|
|
"_nodeVersion": "7.8.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-12-west.internal.npmjs.com",
|
|
"tmp": "tmp/camelcase-4.1.0.tgz_1490865362489_0.433825216954574"
|
|
},
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "4.2.0",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "camelcase@^4.1.0",
|
|
"scope": null,
|
|
"escapedName": "camelcase",
|
|
"name": "camelcase",
|
|
"rawSpec": "^4.1.0",
|
|
"spec": ">=4.1.0 <5.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/jest-runtime/yargs-parser",
|
|
"/jest/yargs-parser",
|
|
"/metro/yargs",
|
|
"/react-native/yargs",
|
|
"/yargs",
|
|
"/yargs-parser"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
|
|
"_shasum": "d545635be1e33c542649c69173e5de6acfae34dd",
|
|
"_shrinkwrap": null,
|
|
"_spec": "camelcase@^4.1.0",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/yargs",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/camelcase/issues"
|
|
},
|
|
"dependencies": {},
|
|
"description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar",
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"xo": "*"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "d545635be1e33c542649c69173e5de6acfae34dd",
|
|
"tarball": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "0e6e4a2752aa013b8e9477145c7b8132c95a82ef",
|
|
"homepage": "https://github.com/sindresorhus/camelcase#readme",
|
|
"keywords": [
|
|
"camelcase",
|
|
"camel-case",
|
|
"camel",
|
|
"case",
|
|
"dash",
|
|
"hyphen",
|
|
"dot",
|
|
"underscore",
|
|
"separator",
|
|
"string",
|
|
"text",
|
|
"convert"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
}
|
|
],
|
|
"name": "camelcase",
|
|
"optionalDependencies": {},
|
|
"readme": "# camelcase [![Build Status](https://travis-ci.org/sindresorhus/camelcase.svg?branch=master)](https://travis-ci.org/sindresorhus/camelcase)\n\n> Convert a dash/dot/underscore/space separated string to camelCase: `foo-bar` → `fooBar`\n\n\n## Install\n\n```\n$ npm install --save camelcase\n```\n\n\n## Usage\n\n```js\nconst camelCase = require('camelcase');\n\ncamelCase('foo-bar');\n//=> 'fooBar'\n\ncamelCase('foo_bar');\n//=> 'fooBar'\n\ncamelCase('Foo-Bar');\n//=> 'fooBar'\n\ncamelCase('--foo.bar');\n//=> 'fooBar'\n\ncamelCase('__foo__bar__');\n//=> 'fooBar'\n\ncamelCase('foo bar');\n//=> 'fooBar'\n\nconsole.log(process.argv[3]);\n//=> '--foo-bar'\ncamelCase(process.argv[3]);\n//=> 'fooBar'\n\ncamelCase('foo', 'bar');\n//=> 'fooBar'\n\ncamelCase('__foo__', '--bar');\n//=> 'fooBar'\n```\n\n\n## Related\n\n- [decamelize](https://github.com/sindresorhus/decamelize) - The inverse of this module\n- [uppercamelcase](https://github.com/SamVerschueren/uppercamelcase) - Like this module, but to PascalCase instead of camelCase\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/camelcase.git"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "4.1.0",
|
|
"xo": {
|
|
"esnext": true
|
|
}
|
|
}
|