-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 KB
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
{
"name": "ppl_assessment_api",
"version": "1.0.0",
"description": "Api PPL",
"main": "index.js",
"repository": "https://github.com/espolPPLTeam/ppl_assessment_api.git",
"author": "Joel Rodriguez <joelerll@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development env-cmd .env nodemon src/server.js --config nodemon.json",
"test:r": "cross-env NODE_ENV=testing mocha src/modulos/**/*.test.js --require src/config/helper.test.js",
"test:r:c": "cross-env NODE_ENV=testing nyc mocha src/modulos/**/*.test.js --require src/config/helper.test.js --timeout 12000",
"lint": "eslint src/**",
"test": "npm-run-all lint test:r:c",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"ajv": "^6.5.3",
"ajv-i18n": "^3.3.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"mongoose": "^5.2.8",
"shortid": "^2.2.13",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"env-cmd": "^8.0.2",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"sinon": "^6.3.3",
"standard": "^12.0.1",
"supertest": "^3.3.0"
}
}