forked from bothadeon/central-fraud-sharing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "central-fraud-sharing",
"version": "1.5.0",
"description": "A series of services designed to offer the participants an avenue to share end user and transactional information to help promote overall health of the scheme via fraud prevention.",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:mojaloop/central-fraud-sharing.git"
},
"config": {
"knex": "--knexfile ./config/knexfile.js"
},
"standard": {
"ignore": [
"**/migrations/**"
]
},
"scripts": {
"start": "node src/server.js",
"test": "npm run test:unit | faucet",
"test:xunit": "tape 'test/unit/**/*.test.js' | tap-xunit",
"test:coverage": "istanbul cover tapes -- 'test/unit/**/*.test.js'",
"test:coverage-check": "npm run test:coverage && istanbul check-coverage",
"test:circle": "./test/functional-runner.sh docker-compose.yml docker-compose.circle.yml .env",
"pretest": "standard",
"test:unit": "tapes 'test/unit/**/*.test.js'"
},
"dependencies": {
"@mojaloop/central-services-auth": "0.2.0",
"@mojaloop/central-services-error-handling": "0.3.0",
"@mojaloop/central-services-shared": "0.3.0",
"blipp": "2.3.0",
"bluebird": "3.5.0",
"glob": "7.1.1",
"glue": "4.1.0",
"good": "7.1.0",
"good-console": "6.4.0",
"good-squeeze": "5.0.2",
"hapi": "16.1.1",
"hapi-swagger": "7.7.0",
"inert": "4.2.0",
"joi": "10.4.1",
"rc": "1.2.1",
"uuid4": "1.0.0",
"vision": "4.1.1"
},
"optionalDependencies": {
"pg": "6.1.5"
},
"devDependencies": {
"aws-sdk": "2.50.0",
"faucet": "0.0.1",
"istanbul": "0.4.5",
"pre-commit": "1.1.3",
"proxyquire": "^1.7.11",
"sinon": "1.17.6",
"standard": "8.5.0",
"tap-xunit": "1.4.0",
"tape": "4.6.2",
"tapes": "4.1.0"
}
}