2016-02-11 14:27:15 -05:00
|
|
|
{
|
2019-02-07 16:49:19 -08:00
|
|
|
"name": "koa-api-boilerplate",
|
2018-03-05 19:26:06 -08:00
|
|
|
"version": "3.0.0",
|
2019-02-07 16:49:19 -08:00
|
|
|
"description": "Koa2 boilerplate covering essentials for REST API and auth.",
|
2016-02-11 14:27:15 -05:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2016-02-11 15:17:46 -05:00
|
|
|
"start": "node index.js",
|
2020-04-10 11:04:05 -07:00
|
|
|
"test": "export KOA_ENV=test && npm run prep-test && nyc --reporter=text --timeout 15000 ./node_modules/.bin/mocha --exit",
|
2020-02-12 10:42:02 -08:00
|
|
|
"lint": "standard --env mocha --fix",
|
2018-11-07 18:56:38 -08:00
|
|
|
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
|
|
|
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
2019-05-20 20:24:26 -07:00
|
|
|
"coverage:report": "nyc --reporter=html mocha --exit",
|
2019-05-20 20:57:44 -07:00
|
|
|
"prep-test": "node util/users/delete-all-test-users.js"
|
2016-02-11 14:27:15 -05:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
2019-02-07 16:49:19 -08:00
|
|
|
"koa-api-boilerplate",
|
2016-02-17 19:27:53 -05:00
|
|
|
"api",
|
2016-02-11 14:27:15 -05:00
|
|
|
"koa",
|
|
|
|
|
"koa2",
|
|
|
|
|
"boilerplate",
|
|
|
|
|
"es6",
|
|
|
|
|
"mongoose",
|
2016-08-30 15:47:03 -04:00
|
|
|
"passportjs",
|
|
|
|
|
"apidoc"
|
2016-02-11 14:27:15 -05:00
|
|
|
],
|
2018-03-05 19:26:06 -08:00
|
|
|
"author": "Chris Troutner <chris.troutner@gmail.com>",
|
2016-02-11 14:50:53 -05:00
|
|
|
"license": "MIT",
|
2016-03-04 21:04:14 -05:00
|
|
|
"apidoc": {
|
2019-02-07 16:49:19 -08:00
|
|
|
"title": "koa-api-boilerplate",
|
2016-03-04 22:25:44 -05:00
|
|
|
"url": "localhost:5000"
|
2016-03-04 21:04:14 -05:00
|
|
|
},
|
2019-02-07 16:49:19 -08:00
|
|
|
"repository": "christroutner/koa-api-boilerplate",
|
2016-02-11 14:50:53 -05:00
|
|
|
"dependencies": {
|
2020-05-30 15:39:31 +00:00
|
|
|
"apidoc": "^0.23.0",
|
2020-01-30 01:10:06 -04:00
|
|
|
"axios": "^0.19.2",
|
2018-10-16 11:06:39 -07:00
|
|
|
"bcryptjs": "^2.4.3",
|
2016-02-15 16:52:40 -05:00
|
|
|
"glob": "^7.0.0",
|
2018-11-08 04:42:49 +00:00
|
|
|
"jsonwebtoken": "^8.3.0",
|
2018-04-27 10:50:14 -07:00
|
|
|
"kcors": "^2.2.1",
|
2018-03-05 19:38:29 -08:00
|
|
|
"koa": "^2.5.0",
|
|
|
|
|
"koa-bodyparser": "^4.2.0",
|
2016-02-11 14:50:53 -05:00
|
|
|
"koa-convert": "^1.2.0",
|
2018-03-05 19:38:29 -08:00
|
|
|
"koa-generic-session": "^2.0.1",
|
|
|
|
|
"koa-logger": "^3.1.0",
|
2018-11-08 04:42:49 +00:00
|
|
|
"koa-mount": "^4.0.0",
|
|
|
|
|
"koa-passport": "^4.1.1",
|
2020-05-30 08:12:11 +00:00
|
|
|
"koa-router": "^9.0.1",
|
2018-11-08 04:42:49 +00:00
|
|
|
"koa-static": "^5.0.0",
|
2020-01-15 21:28:13 -08:00
|
|
|
"line-reader": "^0.4.0",
|
2019-05-31 10:52:23 +00:00
|
|
|
"mongoose": "^5.5.12",
|
2018-03-24 10:52:38 -07:00
|
|
|
"passport-local": "^1.0.0",
|
2019-05-20 20:57:44 -07:00
|
|
|
"winston": "^3.2.1",
|
2019-09-06 15:11:26 +00:00
|
|
|
"winston-daily-rotate-file": "^4.0.0"
|
2016-02-11 15:17:12 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2018-03-05 19:38:29 -08:00
|
|
|
"chai": "^4.1.2",
|
2018-11-07 20:26:18 -08:00
|
|
|
"coveralls": "^3.0.2",
|
2020-02-12 10:42:02 -08:00
|
|
|
"eslint": "5.16.0",
|
|
|
|
|
"eslint-config-prettier": "^6.0.0",
|
|
|
|
|
"eslint-config-standard": "^14.1.0",
|
2020-03-28 11:49:48 +00:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2020-02-12 10:42:02 -08:00
|
|
|
"eslint-plugin-prettier": "^3.1.0",
|
2018-11-08 04:42:49 +00:00
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
2020-01-26 08:02:33 +00:00
|
|
|
"mocha": "^7.0.1",
|
2019-12-23 01:06:51 +00:00
|
|
|
"nyc": "^15.0.0",
|
2020-02-12 10:42:02 -08:00
|
|
|
"semantic-release": "^17.0.0",
|
|
|
|
|
"standard": "^14.3.1"
|
2018-11-07 18:56:38 -08:00
|
|
|
},
|
|
|
|
|
"release": {
|
|
|
|
|
"publish": [
|
|
|
|
|
{
|
|
|
|
|
"path": "@semantic-release/npm",
|
|
|
|
|
"npmPublish": false
|
|
|
|
|
}
|
|
|
|
|
]
|
2016-02-11 14:50:53 -05:00
|
|
|
}
|
2016-02-11 14:27:15 -05:00
|
|
|
}
|