diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86a43d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules +/python_modules + + + +npm-debug.log* +yarn-debug.log* +yarn-error.log* \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..27eb33b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "nodegcall", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "nopy": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/nopy/-/nopy-0.2.4.tgz", + "integrity": "sha1-HAvG6yMHzQzisIdaq6tTa3CLrNo=" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..e483d1f --- /dev/null +++ b/package.json @@ -0,0 +1,43 @@ +{ + "name": "nodegcall", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "install": "npm run npip -- install", + "nopenv": "nopenv", + "nopy": "nopy", + "npip": "npip" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/juggernaut451/nodeGCall.git" + }, + "author": "", + "contributor": [ + { + "name": "Snehil Verma", + "email": "vsnehil92@gmail.com" + } + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/juggernaut451/nodeGCall/issues" + }, + "homepage": "https://github.com/juggernaut451/nodeGCall#readme", + "dependencies": { + "nopy": "" + }, + "python": { + "execPath": "python3", + "dependencies": { + "google-api-python-client": ">=1.6.5", + "google-auth": ">=1.4.1", + "google-auth-httplib2": ">=0.0.3", + "google-auth-oauthlib": ">=0.2.0", + "oauthlib": ">=2.0.6", + "requests-oauthlib": ">=0.8.0" + } + } +}