-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 961 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 961 Bytes
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
{
"name": "application-reference-nodejs",
"version": "1.0.0",
"description": "aplicación de referencia para la creación de microservicios, workers u apis livianas, escalables y sin estado.",
"main": "app.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:pami-inssjp/application-reference-nodejs.git"
},
"keywords": [
"example",
"reference",
"nodejs"
],
"author": "Pablo González <pablodgonzalez@gmail.com> (https://github.com/pablodgonzalez)",
"license": "ISC",
"dependencies": {
"config": "^1.14.0",
"express": "^4.13.1",
"express-domain-middleware": "^0.1.0",
"express-jwt": "^3.0.1",
"jsonwebtoken": "^5.0.2",
"node-uuid": "^1.4.3",
"winston": "^1.0.1"
},
"devDependencies": {
"grunt": "^0.4.5",
"mocha": "^2.2.5",
"morgan": "^1.6.1",
"supertest": "^1.0.1"
},
"directories": {
"test": "test"
}
}