@lykmapipo/predefine
Version:
A representation of stored and retrieved information that does not qualify to belongs to their own domain model.
147 lines (146 loc) • 4.7 kB
JSON
{
"name": "@lykmapipo/predefine",
"version": "1.19.6",
"description": "A representation of stored and retrieved information that does not qualify to belongs to their own domain model.",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib dist es umd logs",
"prebuild": "npm test && npm run clean",
"build": "rollup -c",
"lint": "eslint --fix --ext .js src/ test/ rollup.config.js examples/",
"pretest": "npm run lint",
"posttest": "rimraf test/fixtures/*.csv",
"posttest:unit": "rimraf test/fixtures/*.csv",
"posttest:integration": "rimraf test/fixtures/*.csv",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha --exit --timeout=8000 --require @babel/register test/**/*.spec.js",
"test:unit": "NODE_ENV=test npm run pretest && NODE_ENV=test mocha --exit --timeout=8000 --require @babel/register test/unit/**/*.spec.js",
"test:integration": "NODE_ENV=test npm run pretest && NODE_ENV=test mocha --exit --timeout=8000 --require @babel/register test/integration/**/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md",
"cmt": "git add -A && git-cz",
"changelog": "changelog",
"chore:deps": "ncu -u && npm install --save",
"lint:config": "eslint --print-config rollup.config.js",
"dev": "npm run seed && npm run start",
"start": "NODE_ENV=development BASE_PATH=./examples babel-node ./examples/app.js",
"seed": "NODE_ENV=development BASE_PATH=./examples babel-node ./examples/seed.js"
},
"keywords": [
"lykmapipo",
"mongoose",
"mongoose-module",
"predefined",
"predefine",
"settings",
"config",
"env",
"preference"
],
"repository": {
"type": "git",
"url": "https://github.com/lykmapipo/predefine.git"
},
"author": {
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
},
"contributors": [
{
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lykmapipo/predefine/issues",
"email": "lallyelias87@gmail.com"
},
"homepage": "https://github.com/lykmapipo/predefine",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@benmaruchu/faker": "^4.3.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@lykmapipo/express-test-helpers": "^0.9.14",
"@lykmapipo/mongoose-test-helpers": "^0.8.4",
"chai": "^4.2.0",
"commitizen": "^4.2.2",
"coveralls": "^3.1.0",
"csv-parse": "^4.14.2",
"csv-to-array": "^1.0.2",
"cz-conventional-changelog": "^3.3.0",
"doxdox": "^3.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.3.0",
"generate-changelog": "^1.8.0",
"handlebars": "^4.7.6",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"lodash.template": "^4.5.0",
"mocha": "^8.2.1",
"mongoose": ">=5.11.8",
"npm-check-updates": "^10.2.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"shelljs": "^0.8.4"
},
"peerDependencies": {
"mongoose": ">=5.11.8"
},
"dependencies": {
"@lykmapipo/common": ">=0.42.4",
"@lykmapipo/env": ">=0.17.24",
"@lykmapipo/express-common": ">=0.18.14",
"@lykmapipo/express-rest-actions": ">=0.8.26",
"@lykmapipo/geo-tools": ">=0.7.21",
"@lykmapipo/mongoose-common": ">=0.38.4",
"@lykmapipo/mongoose-exportable": ">=0.3.36",
"async": ">=3.2.0",
"lodash": ">=4.17.20",
"mongoose-geojson-schemas": ">=0.12.9",
"mongoose-locale-schema": ">=0.4.28",
"mongoose-rest-actions": ">=0.30.6",
"topojson-server": ">=3.0.1"
},
"engines": {
"node": ">=12.4.0",
"npm": ">=6.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.js": [
"npm run lint",
"git add -A"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}