edit package

This commit is contained in:
Francesco Esposito 2019-08-08 11:05:20 +02:00
parent a09ec20871
commit 8a1a89798e
2 changed files with 7 additions and 47 deletions

40
package-lock.json generated
View File

@ -1097,14 +1097,6 @@
}
}
},
"basic-auth": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz",
"integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
"requires": {
"safe-buffer": "5.1.2"
}
},
"bcrypt": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-3.0.6.tgz",
@ -4044,33 +4036,6 @@
"resolved": "https://registry.npmjs.org/mongoose-paginate-v2/-/mongoose-paginate-v2-1.3.0.tgz",
"integrity": "sha512-u9vNPqSt7wp4wBY50JEpovOodQb8LcyruJQSKi+8ZzRxjHnp88z+DrZkRL3HbjxJ69+UlO2GSflT6BW4Dd1orA=="
},
"morgan": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz",
"integrity": "sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==",
"requires": {
"basic-auth": "~2.0.0",
"debug": "2.6.9",
"depd": "~1.1.2",
"on-finished": "~2.3.0",
"on-headers": "~1.0.1"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
}
}
},
"mpath": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/mpath/-/mpath-0.6.0.tgz",
@ -4384,11 +4349,6 @@
"ee-first": "1.1.1"
}
},
"on-headers": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
},
"once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",

View File

@ -1,8 +1,9 @@
{
"name": "tick3t-api",
"version": "1.0.0",
"version": "0.1.0",
"description": "tick3t-api",
"main": "index.js",
"main": "server.js",
"private": true,
"scripts": {
"start": "nodemon --exec babel-node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
@ -11,14 +12,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/frab1t/tick3t-api.git"
"url": "git+https://github.com/frsposito/tick3t-api.git"
},
"author": "frab1t",
"author": "frsposito",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/frab1t/tick3t-api/issues"
"url": "https://github.com/frsposito/tick3t-api/issues"
},
"homepage": "https://github.com/frab1t/tick3t-api#readme",
"homepage": "https://github.com/frsposito/tick3t-api#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
@ -29,7 +30,6 @@
"moment": "^2.24.0",
"mongoose": "^5.5.9",
"mongoose-paginate-v2": "^1.3.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"winston": "^3.2.1"
},