-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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": "devtionary",
"version": "1.0.0",
"description": "Aplicación de tomar notas para desarrolladores",
"main": "src/app.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node src/app.js",
"test": "istanbul cover _mocha",
"coveralls": "npm run test -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianmorente/devtionary.git"
},
"keywords": [
"node",
"dev",
"notes",
"javascript",
"dictionary"
],
"author": "@adrianmorente",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/adrianmorente/devtionary/issues"
},
"homepage": "https://github.com/adrianmorente/devtionary#readme",
"dependencies": {
"assert": "^1.4.1",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-winston": "^3.0.1",
"mongodb": "^3.1.8",
"redis": "^2.8.0",
"supertest": "^3.3.0",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}