@inst/vscode-bin-darwin
Version:
BINARY ONLY - VSCode binary deployment for macOS
82 lines (81 loc) • 4.65 kB
JSON
{
"_args": [
[
{
"raw": "keytar@https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"scope": null,
"escapedName": "keytar",
"name": "keytar",
"rawSpec": "https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"spec": "https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"type": "remote"
},
"/Users/code/tfs/agent3/_work/2/s"
]
],
"_from": "keytar@latest",
"_id": "keytar@4.0.3",
"_inCache": true,
"_location": "/keytar",
"_phantomChildren": {},
"_requested": {
"raw": "keytar@https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"scope": null,
"escapedName": "keytar",
"name": "keytar",
"rawSpec": "https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"spec": "https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"type": "remote"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"_shasum": "45a36742c1cfcd07210d26d1b9428e297879bcfc",
"_shrinkwrap": null,
"_spec": "keytar@https://registry.npmjs.org/keytar/-/keytar-4.0.3.tgz",
"_where": "/Users/code/tfs/agent3/_work/2/s",
"bugs": {
"url": "https://github.com/atom/node-keytar/issues"
},
"dependencies": {
"nan": "2.5.1"
},
"description": "Bindings to native Mac/Linux/Windows password APIs",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"node-cpplint": "~0.1.5",
"node-gyp": "^3.6.0"
},
"gypfile": true,
"homepage": "http://atom.github.io/node-keytar",
"keywords": [
"keychain",
"password",
"passwords",
"credential",
"credentials",
"vault",
"credential vault"
],
"license": "MIT",
"main": "./lib/keytar.js",
"name": "keytar",
"optionalDependencies": {},
"readme": "# keytar - Node module to manage system keychain\n\n[](https://travis-ci.org/atom/node-keytar)\n\nA native Node module to get, add, replace, and delete passwords in system's keychain. On macOS the passwords are managed by the Keychain, on Linux they are managed by the Secret Service API/libsecret, and on Windows they are managed by Credential Vault.\n\n## Installing\n\n```sh\nnpm install keytar\n```\n\n### On Linux\n\nCurrently this library uses `libsecret` so you may need to install it before `npm install`ing.\n\nDepending on your distribution, you will need to run the following command:\n\n* Debian/Ubuntu: `sudo apt-get install libsecret-1-dev`\n* Red Hat-based: `sudo yum install libsecret-devel`\n* Arch Linux: `sudo pacman -S libsecret`\n\n## Building\n\n * Clone the repository\n * Run `npm install`\n * Run `npm test` to run the tests\n\n## Docs\n\n```javascript\nconst keytar = require('keytar')\n```\n\nEvery function in keytar is asynchronous and returns a promise. The promise will be rejected with any error that occurs or will be resolved with the function's \"yields\" value.\n\n### getPassword(service, account)\n\nGet the stored password for the `service` and `account`.\n\n`service` - The string service name.\n\n`account` - The string account name.\n\nYields the string password or `null` if an entry for the given service and account was not found.\n\n### setPassword(service, account, password)\n\nSave the `password` for the `service` and `account` to the keychain. Adds a new entry if necessary, or updates an existing entry if one exists.\n\n`service` - The string service name.\n\n`account` - The string account name.\n\n`password` - The string password.\n\nYields nothing.\n\n### deletePassword(service, account)\n\nDelete the stored password for the `service` and `account`.\n\n`service` - The string service name.\n\n`account` - The string account name.\n\nYields `true` if a password was deleted, or `false` if an entry with the given service and account was not found.\n\n### findPassword(service)\n\nFind a password for the `service` in the keychain.\n\n`service` - The string service name.\n\nYields the string password, or `null` if an entry for the given service and account was not found.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/atom/node-keytar.git"
},
"scripts": {
"cpplint": "node-cpplint --filters legal-copyright,build-include,build-namespaces src/*.cc",
"install": "node-gyp rebuild",
"lint": "npm run cpplint",
"test": "npm run lint && npm build . && mocha --compilers js:babel-core/register spec/"
},
"version": "4.0.3"
}