61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|