ifd
Version:
Life Extending Ternary Operator Abstractions
83 lines (82 loc) • 2.3 kB
JSON
{
"name": "ifd",
"version": "0.1.0",
"description": "Life Extending Ternary Operator Abstractions",
"author": "te schulzt <te@teschultz.come> (https://teschultz.com)",
"homepage": "https://github.com/artisin/ifd",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/*",
"test": "npm run build && mocha __tests__/run.test.js --colors --bail --compilers js:babel-core/register",
"test:debug": "iron-node node_modules/mocha/bin/_mocha __tests__/run.test.js --colors --bail --compilers js:babel-core/register",
"dev": "npm run clean && NODE_ENV=dev webpack --watch",
"build": "npm run clean && webpack --color --progress",
"prepublish": "npm run test && npm run build",
"release": "better-npm-run release",
"release:minor": "better-npm-run release:minor",
"release:major": "better-npm-run release:major",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepush": "npm test",
"commit": "git cz"
},
"betterScripts": {
"release": {
"command": "release-it"
},
"release:minor": {
"command": "release-it minor"
},
"release:major": {
"command": "release-it major"
}
},
"main": "dist/ifd.js",
"repository": {
"type": "git",
"url": "https://github.com/artisin/ifd"
},
"bugs": {
"url": "https://github.com/artisin/ifd/issues"
},
"keywords": [
"if",
"ternary",
"abstraction",
"default",
"artisin",
"te"
],
"dependencies": {
"lodash.isundefined": "3.0.1",
"lodash.isnull": "3.0.0",
"lodash.isnan": "3.0.2",
"lodash.isplainobject": "4.0.6",
"lodash.isarray": "4.0.0",
"lodash.isfunction": "3.0.8",
"lodash.has": "4.5.2"
},
"devDependencies": {
"commitizen": "2.9.5",
"cz-customizable": "4.0.0",
"conventional-changelog-cli": "1.2.0",
"better-npm-run": "0.0.14",
"release-it": "2.5.3",
"husky": "0.13.1",
"webpack": "2.2.0",
"babel-core": "6.16.0",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.16.0",
"mocha": "3.1.0",
"should": "11.1.0",
"glob-all": "3.1.0",
"lodash": "4.16.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}