@adonisjs/lucid
Version:
- [x] Paginate method - [x] forPage method - [ ] chunk ( removed ) - [ ] pluckAll ( removed ) - [x] withPrefix - [x] transactions - [x] global transactions
63 lines (62 loc) • 1.51 kB
JSON
{
"name": "@adonisjs/lucid",
"version": "4.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true DB=sqlite node bin/index.js --local",
"test": "nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-lucid.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/adonisjs/adonis-lucid/issues"
},
"homepage": "https://github.com/adonisjs/adonis-lucid#readme",
"dependencies": {
"debug": "^2.6.8",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"node-exceptions": "^2.0.2",
"pluralize": "^5.0.0"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.0",
"@adonisjs/sink": "^1.0.9",
"chance": "^1.0.10",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"fs-extra": "^3.0.1",
"japa": "^1.0.3",
"japa-cli": "^1.0.1",
"mysql": "^2.13.0",
"nyc": "^11.0.2",
"pg": "^6.4.0",
"sqlite3": "^3.1.8",
"standard": "^10.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"src",
"lib"
],
"exclude": [
"src/Logger/index.js"
]
}
}