Another biased type checking solution for Javascript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

65 lines
1.4 KiB

{
"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"
}
}