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

104 lines
4.1 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": "pascal-case@^1.1.0",
"scope": null,
"escapedName": "pascal-case",
"name": "pascal-case",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/change-case"
]
],
"_from": "pascal-case@>=1.1.0 <2.0.0",
"_id": "pascal-case@1.1.2",
"_inCache": true,
"_location": "/pascal-case",
"_nodeVersion": "5.2.0",
"_npmUser": {
"name": "blakeembrey",
"email": "hello@blakeembrey.com"
},
"_npmVersion": "3.3.12",
"_phantomChildren": {},
"_requested": {
"raw": "pascal-case@^1.1.0",
"scope": null,
"escapedName": "pascal-case",
"name": "pascal-case",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/change-case"
],
"_resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.2.tgz",
"_shasum": "3e5d64a20043830a7c49344c2d74b41be0c9c99b",
"_shrinkwrap": null,
"_spec": "pascal-case@^1.1.0",
"_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/pascal-case/issues"
},
"dependencies": {
"camel-case": "^1.1.1",
"upper-case-first": "^1.1.0"
},
"description": "Pascal case a string",
"devDependencies": {
"istanbul": "^0.3.0",
"mocha": "^2.2.1",
"pre-commit": "^1.0.6",
"standard": "^3.3.0"
},
"directories": {},
"dist": {
"shasum": "3e5d64a20043830a7c49344c2d74b41be0c9c99b",
"tarball": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.2.tgz"
},
"files": [
"pascal-case.js",
"pascal-case.d.ts",
"LICENSE"
],
"gitHead": "d22241b017fe7d5238d9fadc03515752e7072a30",
"homepage": "https://github.com/blakeembrey/pascal-case",
"keywords": [
"pascal",
"case"
],
"license": "MIT",
"main": "pascal-case.js",
"maintainers": [
{
"name": "blakeembrey",
"email": "hello@blakeembrey.com"
}
],
"name": "pascal-case",
"optionalDependencies": {},
"readme": "# Pascal 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\nPascal case a string. Explicitly adds a single underscore between groups of numbers to keep readability (E.g. `1.20.5` becomes `1_20_5`, not `1205`).\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 pascal-case --save\n```\n\n## Usage\n\n```javascript\nvar pascalCase = require('pascal-case')\n\npascalCase('string') //=> \"String\"\npascalCase('camelCase') //=> \"CamelCase\"\npascalCase('sentence case') //=> \"SentenceCase\"\n\npascalCase('MY STRING', 'tr') //=> \"MyStrıng\"\n```\n\n## Typings\n\nIncludes a [TypeScript definition](pascal-case.d.ts).\n\n## License\n\nMIT\n\n[npm-image]: https://img.shields.io/npm/v/pascal-case.svg?style=flat\n[npm-url]: https://npmjs.org/package/pascal-case\n[downloads-image]: https://img.shields.io/npm/dm/pascal-case.svg?style=flat\n[downloads-url]: https://npmjs.org/package/pascal-case\n[travis-image]: https://img.shields.io/travis/blakeembrey/pascal-case.svg?style=flat\n[travis-url]: https://travis-ci.org/blakeembrey/pascal-case\n[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/pascal-case.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/blakeembrey/pascal-case?branch=master\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/pascal-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": "pascal-case.d.ts",
"version": "1.1.2"
}