-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "superbowleto",
"version": "1.0.0",
"description": "A simple microservice to issue, register and manage boletos",
"main": "index.js",
"private": true,
"scripts": {
"lint": "eslint 'test/**/*.js' 'src/**/*.js'",
"test-ci": "mkdir reports && nyc ava --verbose --serial 'test/**/*.js' --tap | ./node_modules/.bin/tap-xunit > ./reports/ava.xml && npm run export-coverage",
"export-coverage": "nyc report --reporter=lcov --report-dir=./coverage/",
"test": "nyc ava --verbose --serial 'test/**/*.js'",
"test-e2e": "ava --verbose --serial 'test/e2e/**/*.js'",
"test-functional": "ava --verbose --serial 'test/functional/**/*.js'",
"test-integration": "ava --verbose --serial 'test/integration/**/*.js'",
"test-unit": "ava --verbose 'test/unit/**/*.js'",
"migrate": "node_modules/.bin/sequelize db:migrate --config src/config/database.js --migrations-path src/database/migrations/",
"seed": "node_modules/.bin/sequelize db:seed:all --config src/config/database.js --seeders-path src/database/seeders/",
"migrate_seed": "npm run migrate && npm run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagarme/superbowleto.git"
},
"keywords": [
"boleto",
"microservice"
],
"author": "Pagar.me Pagamentos S/A <@pagarme>",
"bugs": {
"url": "https://github.com/pagarme/superbowleto/issues"
},
"homepage": "https://github.com/pagarme/superbowleto#readme",
"dependencies": {
"aws-sdk": "2.368.0",
"axios": "0.16.0",
"bluebird": "3.5.0",
"body-parser": "1.18.2",
"cuid": "1.3.8",
"dotenv": "5.0.1",
"escriba": "2.7.0",
"express": "4.16.2",
"joi": "14.3.0",
"log4js": "3.0.6",
"moment": "https://github.com/pagarme/moment/archive/0.0.5.tar.gz",
"moment-timezone": "0.5.26",
"newrelic": "4.11.0",
"dd-trace": "0.14.0",
"node-boleto": "2.2.2",
"nodecredstash": "1.1.0",
"pg": "7.7.1",
"ramda": "0.23.0",
"sequelize": "4.41.2",
"sequelize-cli": "4.0.0",
"source-map-support": "0.4.15",
"sqs-quooler": "1.3.0"
},
"devDependencies": {
"ava": "0.25.0",
"chai": "3.5.0",
"chai-subset": "1.5.0",
"eslint": "4.14.0",
"eslint-config-pagarme-base": "2.0.0",
"eslint-plugin-import": "2.14.0",
"nock": "13.0.5",
"nyc": "13.1.0",
"sinon": "2.3.2",
"tap-xunit": "2.4.1"
}
}