-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
79 lines (79 loc) · 2.83 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
{
"name": "eventos-api",
"version": "1.0.0",
"description": "A API de gerenciamento de eventos",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production ./node_modules/.bin/babel-node src",
"dev": "cross-env NODE_ENV=dev nodemon ./node_modules/.bin/babel-node src",
"test": "cross-env NODE_ENV=test npm-run-all eslint test:unit test:integration",
"test:unit": "cross-env NODE_ENV=test mocha test/**/*.unit.spec.js --require babel-register",
"test:integration": "cross-env NODE_ENV=test ./node_modules/.bin/babel-node test/integration.test.js",
"test:integration:up": "cross-env NODE_ENV=test ./node_modules/.bin/babel-node src",
"test:integration:run": "cross-env NODE_ENV=test mocha test/**/*integration.spec.js --require babel-register",
"watch": "npm-run-all --parallel watch:*",
"watch:test": "npm test -- --watch",
"watch:lint": "onchange '**/*.js' -- npm run eslint",
"coverage": "cross-env NODE_ENV=test npm-run-all coverage:** ",
"coverage:cover": "cross-env NODE_ENV=test nyc npm test",
"coverage:coveralls": "cross-env NODE_ENV=test npm run coverage:cover && nyc report --reporter=text-lcov | coveralls",
"coverage:clean": "rm -rf ./coverage",
"eslint": "eslint --cache --ext .js src test",
"eslint:fix": "eslint --cache --fix --ext .js src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontendbr/eventos-api.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/frontendbr/eventos-api/issues"
},
"homepage": "https://github.com/frontendbr/eventos-api#readme",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"body-parser": "^1.17.2",
"bodymen": "^1.1.0",
"config": "^3.0.0",
"cors": "^2.8.4",
"express": "^4.15.3",
"express-authentication": "^0.3.2",
"express-session": "^1.15.3",
"express-validation": "^1.0.2",
"joi": "^14.0.1",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.11",
"mongoose": "^5.3.2",
"morgan": "^1.8.0",
"swagger-ui-express": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-istanbul": "^0.12.2",
"babel-plugin-istanbul": "^5.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.1.0",
"eslint": "^5.6.1",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mongo-in-memory": "0.0.5",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.1",
"nyc": "^13.1.0",
"pow-mongodb-fixtures": "^0.14.0",
"promise-serial": "^0.1.5",
"sinon": "^7.2.4",
"sinon-chai": "^3.2.0",
"standard": "^12.0.1",
"supertest": "^3.0.0"
}
}