keyblade
Version:
Fail fast when accessing undefined properties on objects.
61 lines (60 loc) • 1.65 kB
JSON
{
"name": "keyblade",
"version": "0.3.2",
"description": "Fail fast when accessing undefined properties on objects.",
"main": "lib/keyblade.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "mocha test/**/*.spec.* --compilers ts:ts-node/register,es6:babel-register --require test/index.js",
"test-watch": "npm run test -- --watch",
"lint": "esw lib/ test/",
"lint-watch": "npm run lint -- --watch",
"cover": "nyc --reporter=lcov --reporter=text npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"do-publish": "npm run lint && npm run cover && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffijoe/keyblade.git"
},
"keywords": [
"proxy",
"fail-fast",
"guard",
"safety",
"assert"
],
"author": "Jeff Hansen <jeff@jeffijoe.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffijoe/keyblade/issues"
},
"homepage": "https://github.com/jeffijoe/keyblade#readme",
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015-node6": "^0.4.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-watch": "^2.1.14",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"ts-node": "^2.0.0",
"typescript": "^2.1.5"
},
"dependencies": {},
"nyc": {
"include": [
"lib/**/*.js"
]
},
"typings": "lib/keyblade"
}