forked from mojaloop/forensic-logging-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@mojaloop/forensic-logging-sidecar",
"version": "0.13.0",
"description": "Sidecar service to save forensic logs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/forensic-logging-sidecar.git"
},
"keywords": [
"sidecar",
"forensic",
"logging"
],
"config": {
"knex": "--knexfile ./config/knexfile.js"
},
"standard": {
"ignore": [
"**/migrations/**"
]
},
"scripts": {
"start": "node src/server.js",
"test": "npm run test:unit | faucet",
"pretest": "standard",
"test:all": "npm test && npm run test:integration",
"test:unit": "tape 'test/unit/**/*.test.js'",
"test:xunit": "npm run test:unit | tap-xunit",
"test:coverage": "istanbul cover tape -- 'test/unit/**/*.test.js'",
"test:coverage-check": "npm run test:coverage && istanbul check-coverage",
"test:integration": "./test/integration-runner.sh .env",
"migrate": "knex migrate:latest $npm_package_config_knex",
"migrate:create": "knex migrate:make $npm_package_config_knex",
"migrate:rollback": "knex migrate:rollback $npm_package_config_knex",
"migrate:current": "knex migrate:currentVersion $npm_package_config_knex"
},
"dependencies": {
"@mojaloop/central-services-database": "0.3.0",
"@mojaloop/central-services-shared": "0.3.0",
"bitsyntax": "0.0.4",
"bluebird": "3.5.0",
"moment": "2.18.1",
"node-aes-cmac": "0.1.1",
"rc": "1.2.1",
"tweetnacl": "1.0.0",
"tweetnacl-util": "0.15.0",
"uuid4": "1.0.0",
"ws": "3.0.0"
},
"optionalDependencies": {
"pg": "6.1.5"
},
"devDependencies": {
"aws-sdk": "2.16.0",
"faucet": "0.0.1",
"istanbul": "0.4.5",
"pre-commit": "1.2.2",
"proxyquire": "1.8.0",
"sinon": "2.3.4",
"standard": "10.0.2",
"tap-xunit": "1.7.0",
"tape": "4.6.3",
"tapes": "4.1.0"
}
}