diff --git a/.gitignore b/.gitignore index 0889f06..39d75c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /node_modules +*.iml .idea/ \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..7fd8004 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,21 @@ +{ + "name": "g-autoloader", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "foreachasync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz", + "integrity": "sha1-VQKYfchxS+M5IJfzLgBxyd7gfPY=" + }, + "walk": { + "version": "2.3.14", + "resolved": "https://registry.npmjs.org/walk/-/walk-2.3.14.tgz", + "integrity": "sha512-5skcWAUmySj6hkBdH6B6+3ddMjVQYH5Qy9QGbPmN8kVmLteXk+yVXg+yfk1nbX30EYakahLrr8iPcCxJQSCBeg==", + "requires": { + "foreachasync": "^3.0.0" + } + } + } +} diff --git a/package.json b/package.json index e8bfa23..6549cc1 100644 --- a/package.json +++ b/package.json @@ -1,19 +1,18 @@ { "name": "g-autoloader", - "version": "1.0.0", + "version": "1.1.1", "description": "Chargeur automatique pour les composants. Chargement pro actif ou à la demande.", "main": "index.js", "repository": { - "type": "git", - "url": "ssh://git@stash.gammadia.ch:7999/nodmod/g-autoloader.git" - }, - "publishConfig": { - "registry": "http://npm:uOe5y3Vw1q2n6n43XD41734P854Ow5@npm.gammadia.ch:5984/registry/_design/app/_rewrite/" + "type": "git", + "url": "ssh://git@github.com:tipee-sa/g-autoloader.git" }, + "license": "UNLICENSED", + "private": true, "engines": { - "node": ">=0.8.0" + "node": ">=10.13.0" }, "dependencies": { - "walk": "2.2.x" + "walk": "^2.3.14" } }