node-riveter
Version:
Mix-in, inheritance and constructor extend behavior for your JavaScript enjoyment.
99 lines (98 loc) • 2.24 kB
JSON
{
"name": "node-riveter",
"description": "Mix-in, inheritance and constructor extend behavior for your JavaScript enjoyment.",
"version": "2.0.0",
"homepage": "https://github.com/foo-foo-mq/node-riveter",
"repository": {
"type": "git",
"url": "git://github.com/foo-foo-mq/node-riveter.git"
},
"author": {
"name": "Foo-Foo-MQ Team",
"email": "def@foofoomq.com"
},
"contributors": [
{
"name": "Zach Lintz",
"email": "zlintz@foofoomq.com",
"url": "http://github.com/zlintz"
},
{
"name": "Parker Johansen",
"email": "auroq@foofoomq.com",
"url": "http://github.com/auroq"
},
{
"name": "appendTo, LLC",
"url": "http://appendTo.com"
},
{
"name": "Jim Cowart",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://ifandelse.com"
},
{
"name": "Nicholas Cloud",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://nicholascloud.com"
},
{
"name": "Doug Neiner",
"email": "WhyNotJustComment@OnMyBlog.com",
"url": "http://dougneiner.com/"
}
],
"keywords": [
"mixin",
"mix-in",
"inherit",
"extend",
"constructor"
],
"bugs": {
"email": "PleaseJustUseTheIssuesPage@github.com",
"url": "http://github.com/foo-foo-mq/node-riveter/issues"
},
"directories": {
"lib": "lib"
},
"main": "lib/riveter.js",
"engines": {
"node": ">=12"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"coveralls": "^3.1.0",
"expect.js": "~0.3.1",
"mocha": "^8.1.1",
"nyc": "^14.1.1",
"prettier-standard": "^16.4.1"
},
"scripts": {
"coverage": "nyc --exclude=**/*.spec.js --reporter=lcov npm run test ",
"test": "mocha ./spec/*.js",
"test:watch": "npm run test -- --watch",
"precommit": "lint-staged",
"lint": "prettier-standard --lint"
},
"lint-staged": {
"linters": {
"**/*": [
"prettier-standard --lint",
"git add"
]
}
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
}
]
}