@warp-works/warpjs-mongo-persistence
Version:
Mongo implementation for persistence layer of WarpWorks
73 lines (72 loc) • 2.08 kB
JSON
{
"name": "@warp-works/warpjs-mongo-persistence",
"version": "2.0.3",
"description": "Mongo implementation for persistence layer of WarpWorks",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.15.0"
},
"scripts": {
"pretest": "npm run eslint",
"precoverage": "npm run eslint",
"prepack": "npm run coverage",
"eslint:node": "eslint --fix --ignore-pattern='*.test.js' lib",
"eslint:test": "eslint --fix --config='.eslintrc.test.json' 'lib/**/*.test.js'",
"eslint": "npm run -s eslint:node && npm run -s eslint:test",
"test:unit": "mocha 'lib/**/*.unit.test.js'",
"test": "npm run -s test:unit",
"coverage:unit": "nyc --report-dir='reports/coverage-unit' npm run -s test:unit",
"coverage": "npm run -s coverage:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/WarpWorks/warpjs-mongo-persistence.git"
},
"keywords": [
"mongo",
"persistence",
"WarpJS",
"WarpWorks"
],
"author": {
"name": "Hữu Ðà Trần",
"email": "HuuDa.Tran@quoininc.com",
"url": "https://www.quoininc.com/staff/huu-da-tran/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dslama/MongoPersistence/issues"
},
"homepage": "https://github.com/dslama/MongoPersistence#readme",
"devDependencies": {
"@quoin/eslint-config-quoin": "^2.0.2",
"@quoin/node-test-helpers": "^2.0.1",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"mongo-mock": "^4.0.0",
"nyc": "^15.1.0"
},
"dependencies": {
"@warp-works/warpjs-persistence": "^2.0.1",
"bluebird": "^3.7.2",
"debug": "^4.3.1",
"lodash": "~4.17.14",
"mongodb": "^3.6.9",
"shelljs": "^0.8.4",
"url-template": "2.0.8"
},
"mocha": {
"diff": true,
"exit": true,
"recursive": true
}
}