46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "pascal-case",
|
|
"version": "2.0.1",
|
|
"description": "Pascal case a string",
|
|
"main": "pascal-case.js",
|
|
"typings": "pascal-case.d.ts",
|
|
"scripts": {
|
|
"lint": "standard",
|
|
"test-std": "mocha -- -R spec --bail",
|
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
|
|
"test": "npm run lint && npm run test-cov"
|
|
},
|
|
"files": [
|
|
"pascal-case.js",
|
|
"pascal-case.d.ts",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/blakeembrey/pascal-case.git"
|
|
},
|
|
"keywords": [
|
|
"pascal",
|
|
"case"
|
|
],
|
|
"author": {
|
|
"name": "Blake Embrey",
|
|
"email": "hello@blakeembrey.com",
|
|
"url": "http://blakeembrey.me"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/blakeembrey/pascal-case/issues"
|
|
},
|
|
"homepage": "https://github.com/blakeembrey/pascal-case",
|
|
"devDependencies": {
|
|
"istanbul": "^0.4.3",
|
|
"mocha": "^3.0.0",
|
|
"standard": "^9.0.1"
|
|
},
|
|
"dependencies": {
|
|
"camel-case": "^3.0.0",
|
|
"upper-case-first": "^1.1.0"
|
|
}
|
|
}
|