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-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",
|
|
|
|
"gulp": "^3.9.1",
|
|
|
|
"gulp-babel": "^8.0.0-beta.2",
|
|
|
|
"gulp-clean": "^0.4.0",
|
|
|
|
"gulp-nodemon": "^2.2.1",
|
|
|
|
"gulp-print": "^5.0.0",
|
|
|
|
"jest": "^23.6.0",
|
|
|
|
"nodemon": "^1.18.4",
|
|
|
|
"sinon": "^7.1.1",
|
|
|
|
"supertest": "^3.3.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "node server.js",
|
|
|
|
"test": "jest",
|
|
|
|
"testw": "jest --watchAll",
|
|
|
|
"devel": "gulp devel",
|
|
|
|
"clean": "gulp clean",
|
|
|
|
"build": "gulp build",
|
2018-12-13 09:10:15 +00:00
|
|
|
"image": "docker build -t statusteam/ghcmgr .",
|
|
|
|
"push": "docker push statusteam/ghcmgr"
|
2018-12-12 14:57:17 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"json"
|
|
|
|
],
|
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"src/**/*.js",
|
|
|
|
"!**/node_modules/**",
|
|
|
|
"!**/build/**",
|
|
|
|
"!**/coverage/**"
|
|
|
|
],
|
|
|
|
"coverageReporters": [
|
|
|
|
"text",
|
|
|
|
"text-summary"
|
|
|
|
],
|
|
|
|
"testRegex": "/test/.*.js$",
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"/build/",
|
|
|
|
"/coverage/"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC"
|
|
|
|
}
|