👷‍ Update dependencies

This commit is contained in:
C-3PO 2018-10-07 17:22:45 +02:00
parent bd35c3b143
commit 7c95adfc15
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
3 changed files with 10 additions and 10 deletions

View file

@ -9,10 +9,10 @@ sudo npm install -g typescript tslint
In addition, the `patch-installer` repository must be present in the parent folder of this repository. In addition, the `patch-installer` repository must be present in the parent folder of this repository.
Transpile the TypeScript files to JavaScript by running: Install dependencies and transpile the TypeScript files to JavaScript by running:
```bash ```bash
npm start npm install && npm start
``` ```
For a better command line experience, add the following to your `~/.bashrc` file: For a better command line experience, add the following to your `~/.bashrc` file:

12
package-lock.json generated
View file

@ -4,9 +4,9 @@
"lockfileVersion": 1, "lockfileVersion": 1,
"dependencies": { "dependencies": {
"@types/node": { "@types/node": {
"version": "10.5.2", "version": "10.11.4",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.5.2.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-10.11.4.tgz",
"integrity": "sha512-m9zXmifkZsMHZBOyxZWilMwmTlpC8x5Ty360JKTiXvlXZfBWYpsg9ZZvP/Ye+iZUh+Q+MxDLjItVTWIsfwz+8Q==", "integrity": "sha512-ojnbBiKkZFYRfQpmtnnWTMw+rzGp/JiystjluW9jgN3VzRwilXddJ6aGQ9V/7iuDG06SBgn7ozW9k3zcAnYjYQ==",
"dev": true "dev": true
}, },
"sax": { "sax": {
@ -15,9 +15,9 @@
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
}, },
"xml-js": { "xml-js": {
"version": "1.6.7", "version": "1.6.8",
"resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.7.tgz", "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.8.tgz",
"integrity": "sha512-1hn0xwwfMcWywnJxqiOXiv+pZaOJyf/YWcUeqJICF0BFb+IOkRFSkKyeA0V62WqTHXNdBxNuCFHhS/w2DtYpoA==", "integrity": "sha512-kUv/geyN80d+s1T68uBfjoz+PjNUjwwf5AWWRwKRqqQaGozpMVsFsKYnenPsxlbN/VL7f0ia8NfLLPCDwX+95Q==",
"requires": { "requires": {
"sax": "^1.2.4" "sax": "^1.2.4"
} }

View file

@ -6,9 +6,9 @@
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^10.5.2" "@types/node": "^10.11.4"
}, },
"dependencies": { "dependencies": {
"xml-js": "^1.6.7" "xml-js": "^1.6.8"
} }
} }