| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | {  "name": "sentence-case",  "version": "1.1.3",  "description": "Sentence case a string",  "main": "sentence-case.js",  "typings": "sentence-case.d.ts",  "files": [    "sentence-case.js",    "sentence-case.d.ts",    "vendor",    "LICENSE"  ],  "scripts": {    "lint": "standard",    "mocha": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",    "test": "npm run build && npm run lint && npm run mocha",    "build": "node build.js",    "stage-vendor": "git add vendor"  },  "standard": {    "ignore": [      "coverage/**"    ]  },  "pre-commit": [    "build",    "stage-vendor",    "test"  ],  "repository": {    "type": "git",    "url": "git://github.com/blakeembrey/sentence-case.git"  },  "keywords": [    "sentence",    "case",    "space"  ],  "author": {    "name": "Blake Embrey",    "email": "hello@blakeembrey.com",    "url": "http://blakeembrey.me"  },  "license": "MIT",  "bugs": {    "url": "https://github.com/blakeembrey/sentence-case/issues"  },  "homepage": "https://github.com/blakeembrey/sentence-case",  "devDependencies": {    "chai": "^1.9.1",    "istanbul": "^0.3.5",    "mocha": "^2.1.0",    "pre-commit": "^1.0.1",    "standard": "^2.3.1",    "xregexp": "^2.0.0"  },  "dependencies": {    "lower-case": "^1.1.1"  },  "__npminstall_done": true,  "_from": "sentence-case@1.1.3",  "_resolved": "https://registry.npmmirror.com/sentence-case/-/sentence-case-1.1.3.tgz"}
 |