UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

46 lines (45 loc) 1.06 kB
{ "name": "pascal-case", "version": "2.0.0", "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": "^2.2.1", "standard": "^7.1.2" }, "dependencies": { "camel-case": "^3.0.0", "upper-case-first": "^1.1.0" } }