You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
{
|
|
"name": "@adminjs/mongoose",
|
|
"version": "3.0.1",
|
|
"description": "Mongoose adapter for adminjs",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"scripts": {
|
|
"dev": "rm -rf lib && tsc --watch",
|
|
"build": "rm -rf lib && tsc",
|
|
"test": "jest --config ./test/jest.json --runInBand",
|
|
"cover": "jest --config ./test/jest.json --runInBand --coverage",
|
|
"lint": "eslint './test/**/*.ts' './src/**/*.ts'",
|
|
"check:all": "yarn lint && yarn build && yarn test",
|
|
"release": "semantic-release"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/SoftwareBrothers/adminjs-mongoose.git"
|
|
},
|
|
"author": "Wojciech Krysiak",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/SoftwareBrothers/adminjs-mongoose/issues"
|
|
},
|
|
"homepage": "https://github.com/SoftwareBrothers/adminjs-mongoose#readme",
|
|
"peerDependencies": {
|
|
"adminjs": ">=6.0.0",
|
|
"mongoose": ">=5"
|
|
},
|
|
"dependencies": {
|
|
"escape-regexp": "0.0.1",
|
|
"flat": "^4.1.0",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^8.3.5",
|
|
"@commitlint/config-conventional": "^8.3.4",
|
|
"@semantic-release/git": "^9.0.0",
|
|
"@types/jest": "^26.0.14",
|
|
"@types/mongoose": "^5.7.36",
|
|
"@typescript-eslint/eslint-plugin": "^4.4.1",
|
|
"@typescript-eslint/parser": "^4.4.1",
|
|
"adminjs": "^6.0.0",
|
|
"eslint": "^5.10.0",
|
|
"eslint-config-airbnb-base": "^13.1.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"factory-girl": "^5.0.4",
|
|
"husky": "^4.2.5",
|
|
"jest": "^26.5.3",
|
|
"mongoose": "^5.9.7",
|
|
"semantic-release": "^17.0.7",
|
|
"semantic-release-slack-bot": "^1.6.2",
|
|
"ts-jest": "^26.4.1",
|
|
"typescript": "^4.0.3"
|
|
}
|
|
}
|