package.json
{
"name": "simple-fake-model",
"version": "1.2.0",
"description": "Simple and fake model used to avoid DB in teaching",
"main": "lib/fakemodel.js",
"scripts": {
"lint": "eslint lib/* ",
"test": "npm run lint && npm run test:unit && npm run test:coverage",
"test:unit": "mocha test/*.test.js",
"test:unit:watch": "mocha -w test/*.test.js",
"test:coverage": "istanbul cover _mocha -- test/*.test.js"
},
"author": "fcanela",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"coveralls": "^2.11.14",
"eslint": "^3.6.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0"
},
"engines": {
"node": ">=6.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcanela/simple-fake-model.git"
},
"keywords": [
"fake",
"model",
"models"
],
"bugs": {
"url": "https://github.com/fcanela/simple-fake-model/issues"
},
"homepage": "https://github.com/fcanela/simple-fake-model#readme"
}