This repository was archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "mojaloop-reporting-service",
"version": "0.1.0",
"description": "",
"main": "src/server.js",
"scripts": {
"docker:build": "docker build -t \"casablanca-casa-docker-release.jfrog.io/${PWD##*/}-$(git rev-parse HEAD)-local\" .",
"docker:push": "docker push -t \"casablanca-casa-docker-release.jfrog.io/${PWD##*/}-$(git rev-parse HEAD)-local\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node src/server.js",
"test": "jest test/**/*.test.js",
"test:integration": "jest test/integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casablanca-project/reports.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/casablanca-project/reports/issues"
},
"homepage": "https://github.com/casablanca-project/reports#readme",
"devDependencies": {
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.8.0",
"supertest": "^4.0.2"
},
"dependencies": {
"@internal/randomphrase": "file:src/lib/randomphrase",
"@internal/router": "file:src/lib/router",
"el-logger": "msk-/el-logger",
"knex": "^0.20.2",
"koa": "^2.7.0",
"mysql2": "^2.0.1",
"object.fromentries": "github:es-shims/Object.fromEntries#v2.0.1",
"string.prototype.matchall": "github:es-shims/String.prototype.matchAll#v4.0.0"
}
}