2018-12-12 14:57:17 +00:00
|
|
|
{
|
|
|
|
"name": "click-counter",
|
|
|
|
"version": "0.0.1",
|
2018-12-13 09:10:15 +00:00
|
|
|
"description": "Minimal API for managing GitHub comments for CIclicks.",
|
|
|
|
"repository": "https://github.com/status-im/github-comment-manager",
|
2018-12-12 14:57:17 +00:00
|
|
|
"main": "index.js",
|
|
|
|
"dependencies": {
|
|
|
|
"@octokit/rest": "^16.2.0",
|
2018-12-13 22:17:03 +00:00
|
|
|
"handlebars": "^4.0.12",
|
2018-12-12 23:06:13 +00:00
|
|
|
"joi": "^14.3.0",
|
2018-12-12 14:57:17 +00:00
|
|
|
"koa": "^2.5.3",
|
2018-12-12 15:21:48 +00:00
|
|
|
"koa-bodyparser": "^4.2.1",
|
2018-12-12 23:06:13 +00:00
|
|
|
"koa-joi-router": "^5.1.0",
|
2018-12-12 14:57:17 +00:00
|
|
|
"koa-json": "^2.0.2",
|
2018-12-13 09:34:38 +00:00
|
|
|
"koa-json-error": "^3.1.2",
|
2018-12-12 14:57:17 +00:00
|
|
|
"koa-logger": "^3.2.0",
|
2018-12-20 21:17:13 +00:00
|
|
|
"loglevel": "^1.6.1",
|
2018-12-13 22:17:03 +00:00
|
|
|
"lokijs": "^1.5.5"
|
2018-12-12 14:57:17 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "^7.1.2",
|
|
|
|
"@babel/core": "^7.1.2",
|
|
|
|
"@babel/node": "^7.0.0",
|
|
|
|
"@babel/plugin-transform-async-to-generator": "^7.1.0",
|
|
|
|
"@babel/preset-env": "^7.1.0",
|
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2018-12-20 15:10:01 +00:00
|
|
|
"babel-plugin-istanbul": "^5.1.0",
|
2018-12-18 23:32:01 +00:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2018-12-12 14:57:17 +00:00
|
|
|
"gulp": "^3.9.1",
|
|
|
|
"gulp-babel": "^8.0.0-beta.2",
|
|
|
|
"gulp-clean": "^0.4.0",
|
2018-12-22 10:25:43 +00:00
|
|
|
"gulp-exec": "^3.0.2",
|
2018-12-20 23:49:17 +00:00
|
|
|
"gulp-mocha": "^6.0.0",
|
2018-12-12 14:57:17 +00:00
|
|
|
"gulp-nodemon": "^2.2.1",
|
|
|
|
"gulp-print": "^5.0.0",
|
2018-12-18 23:32:01 +00:00
|
|
|
"mocha": "^5.2.0",
|
2018-12-12 14:57:17 +00:00
|
|
|
"nodemon": "^1.18.4",
|
2018-12-20 15:10:01 +00:00
|
|
|
"nyc": "^13.1.0",
|
2018-12-12 14:57:17 +00:00
|
|
|
"sinon": "^7.1.1",
|
2018-12-20 15:10:01 +00:00
|
|
|
"sinon-chai": "^3.3.0",
|
2018-12-12 14:57:17 +00:00
|
|
|
"supertest": "^3.3.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "node server.js",
|
2018-12-20 23:49:17 +00:00
|
|
|
"test": "gulp test",
|
2018-12-22 09:52:31 +00:00
|
|
|
"testw": "gulp testw",
|
2018-12-20 15:10:01 +00:00
|
|
|
"cover": "nyc mocha",
|
2018-12-12 14:57:17 +00:00
|
|
|
"devel": "gulp devel",
|
|
|
|
"clean": "gulp clean",
|
|
|
|
"build": "gulp build",
|
2018-12-22 10:25:43 +00:00
|
|
|
"image": "gulp image",
|
|
|
|
"push": "gulp push",
|
|
|
|
"release": "release"
|
2018-12-12 14:57:17 +00:00
|
|
|
},
|
2018-12-20 15:10:01 +00:00
|
|
|
"mocha": [
|
|
|
|
"@babel/register"
|
|
|
|
],
|
|
|
|
"require": [
|
|
|
|
"@babel/register"
|
|
|
|
],
|
2018-12-18 23:32:01 +00:00
|
|
|
"keywords": [
|
|
|
|
"github",
|
|
|
|
"comments",
|
|
|
|
"ci",
|
|
|
|
"builds"
|
|
|
|
],
|
2018-12-12 14:57:17 +00:00
|
|
|
"author": "",
|
|
|
|
"license": "ISC"
|
|
|
|
}
|