From 4062e9316443a79b27bfcb58ced4c6ddaf5898ea Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 16 Jun 2020 21:17:06 -0600 Subject: [PATCH] add package.json --- .gitignore | 1 + README.md | 6 ++++++ package-lock.json | 13 +++++++++++++ package.json | 28 ++++++++++++++++++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 package-lock.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore index f199fa3..7821601 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +node_modules install-*.sh install-*.bat diff --git a/README.md b/README.md index 28da84b..584bc5b 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,14 @@ You just fill in the blanks. Just create an empty directory and run the tests until you get a good result. +```bash +git clone git@github.com:webinstall/packages.git +pushd packages +``` + ```bash mkdir -p new-package +npm install node _webi/test.js ./new-package/ ``` diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..928f48a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "@webinstall/packages", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@root/request": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@root/request/-/request-1.6.1.tgz", + "integrity": "sha512-8wrWyeBLRp7T8J36GkT3RODJ6zYmL0/maWlAUD5LOXT28D3TDquUepyYDKYANNA3Gc8R5ZCgf+AXvSTYpJEWwQ==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..3c9406f --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "@webinstall/packages", + "version": "0.1.0", + "description": "webinstall script repository", + "main": "_webi/", + "scripts": { + "test": "node _webi/test.js ./node/" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/webinstall/packages.git" + }, + "keywords": [ + "webinstall", + "brew", + "apt", + "chocolately" + ], + "author": "AJ ONeal (https://coolaj86.com/)", + "license": "MPL-2.0", + "bugs": { + "url": "https://github.com/webinstall/packages/issues" + }, + "homepage": "https://github.com/webinstall/packages#readme", + "dependencies": { + "@root/request": "^1.6.1" + } +} -- 2.25.1