-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
88 lines (88 loc) · 3.37 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@mojaloop/central-directory",
"version": "0.21.4",
"description": "Central directory hosted by a scheme to retrieve users and start transfer process.",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:mojaloop/central-directory.git"
},
"config": {
"knex": "--knexfile ./config/knexfile.js"
},
"standard": {
"ignore": [
"**/migrations/**"
]
},
"scripts": {
"start": "node src/server.js",
"dev": "npm run docker:stop && docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d",
"test": "npm run test:unit | faucet",
"pretest": "standard",
"test:unit": "tapes 'test/unit/**/*.test.js'",
"test:all": "npm test && npm run test:integration && npm run test:functional",
"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:integration": "./test/integration-runner.sh .env",
"test:functional": "./test/functional-runner.sh docker-compose.yml docker-compose.functional.yml .env",
"test:circle": "./test/functional-runner.sh docker-compose.yml docker-compose.circle.yml .env",
"db:create": "db-migrate db:create central_directory $npm_package_config_db",
"db:psql": "docker run -it --net centraldirectory_back --rm postgres:9.4 sh -c 'exec psql -h postgres -p \"$POSTGRES_PORT_5432_TCP_PORT\" -U central_directory'",
"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",
"docker:stop": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml -f docker-compose.functional.yml stop",
"docker:rm": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml -f docker-compose.functional.yml rm -f -v",
"docker:clean": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml -f docker-compose.functional.yml down --rmi local"
},
"dependencies": {
"@mojaloop/central-services-auth": "0.4.0",
"@mojaloop/central-services-database": "0.3.0",
"@mojaloop/central-services-error-handling": "0.3.0",
"@mojaloop/central-services-shared": "0.3.0",
"@mojaloop/pathfinder-provisioning-client": "0.12.0",
"@mojaloop/pathfinder-query-client": "0.2.0",
"argon2": "0.14.0",
"blipp": "2.3.0",
"bluebird": "3.5.0",
"boom": "4.3.1",
"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",
"memory-cache": "0.2.0",
"moment": "2.18.1",
"rc": "1.2.1",
"sodium": "1.2.3",
"superagent": "3.0.0",
"urlsafe-base64": "1.0.0",
"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",
"supertest": "2.0.1",
"supertest-as-promised": "4.0.2",
"tap-xunit": "1.4.0",
"tape": "4.6.2",
"tapes": "4.1.0"
}
}