121 lines
4.0 KiB
JSON
121 lines
4.0 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "camelcase@^3.0.0",
|
|
"scope": null,
|
|
"escapedName": "camelcase",
|
|
"name": "camelcase",
|
|
"rawSpec": "^3.0.0",
|
|
"spec": ">=3.0.0 <4.0.0",
|
|
"type": "range"
|
|
},
|
|
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/yargs"
|
|
],
|
|
[
|
|
{
|
|
"raw": "camelcase@^3.0.0",
|
|
"scope": null,
|
|
"escapedName": "camelcase",
|
|
"name": "camelcase",
|
|
"rawSpec": "^3.0.0",
|
|
"spec": ">=3.0.0 <4.0.0",
|
|
"type": "range"
|
|
},
|
|
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/yargs-parser"
|
|
]
|
|
],
|
|
"_from": "camelcase@^3.0.0",
|
|
"_id": "camelcase@3.0.0",
|
|
"_inCache": true,
|
|
"_location": "/yargs-parser/camelcase",
|
|
"_nodeVersion": "4.4.2",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-16-east.internal.npmjs.com",
|
|
"tmp": "tmp/camelcase-3.0.0.tgz_1462383205197_0.03801905922591686"
|
|
},
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "3.8.9",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "camelcase@^3.0.0",
|
|
"scope": null,
|
|
"escapedName": "camelcase",
|
|
"name": "camelcase",
|
|
"rawSpec": "^3.0.0",
|
|
"spec": ">=3.0.0 <4.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/yargs-parser"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
|
|
"_shasum": "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a",
|
|
"_shrinkwrap": null,
|
|
"_spec": "camelcase@^3.0.0",
|
|
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/yargs-parser",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "http://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": "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a",
|
|
"tarball": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "d4de0e37b625e38a880efc6517194917a5beda01",
|
|
"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 [](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](http://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/camelcase.git"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "3.0.0"
|
|
}
|