{ "name": "typeforce", "version": "1.2.4", "description": "Another biased type checking solution for Javascript", "author": "Daniel Cousens", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/dcousens/typeforce.git" }, "bugs": { "url": "https://github.com/dcousens/typeforce/issues" }, "homepage": "https://github.com/dcousens/typeforce", "keywords": [ "typeforce", "types", "typechecking", "type", "exceptions", "force" ], "main": "lib/index.js", "files": [ "lib/" ], "scripts": { "build": "babel --out-dir lib/ src/", "coverage": "mocha --compilers js:babel/register --require blanket -R travis-cov", "coverage-local": "mocha --compilers js:babel/register --require blanket -R html-cov", "prepublish": "npm run build", "standard": "standard", "test": "npm run standard && npm run unit", "unit": "mocha --compilers js:babel/register", "watch": "babel --watch --out-dir lib/ src/" }, "config": { "blanket": { "pattern": [ "" ], "data-cover-never": [ "node_modules", "test" ] }, "travis-cov": { "threshold": 100 } }, "standard": { "ignore": [ "lib/" ] }, "dependencies": {}, "devDependencies": { "babel": "*", "blanket": "*", "mocha": "*", "standard": "*", "travis-cov": "*", "xtend": "^4.0.0" } }