UNPKG

@inst/vscode-bin-darwin

Version:

BINARY ONLY - VSCode binary deployment for macOS

76 lines (75 loc) 4.47 kB
{ "_args": [ [ { "raw": "fast-plist@https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "scope": null, "escapedName": "fast-plist", "name": "fast-plist", "rawSpec": "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "spec": "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "type": "remote" }, "/Users/code/tfs/agent3/_work/2/s" ] ], "_from": "fast-plist@0.1.2", "_id": "fast-plist@0.1.2", "_inCache": true, "_location": "/fast-plist", "_phantomChildren": {}, "_requested": { "raw": "fast-plist@https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "scope": null, "escapedName": "fast-plist", "name": "fast-plist", "rawSpec": "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "spec": "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "type": "remote" }, "_requiredBy": [ "/", "/vscode-textmate" ], "_resolved": "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "_shasum": "a45aff345196006d406ca6cdcd05f69051ef35b8", "_shrinkwrap": null, "_spec": "fast-plist@https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz", "_where": "/Users/code/tfs/agent3/_work/2/s", "author": { "name": "Microsoft Corporation" }, "bugs": { "url": "https://github.com/Microsoft/node-fast-plist/issues" }, "dependencies": {}, "description": "A fast PLIST parser", "devDependencies": { "coveralls": "^2.11.12", "istanbul": "^0.4.4", "mocha": "^3.0.2", "remap-istanbul": "^0.6.4", "sax": "^1.2.1", "typescript": "^1.8.10", "typings": "^1.3.2" }, "homepage": "https://github.com/Microsoft/node-fast-plist#readme", "license": "MIT", "main": "./release/src/main.js", "name": "fast-plist", "optionalDependencies": {}, "readme": "# fast-plist [![Build Status](https://travis-ci.org/Microsoft/node-fast-plist.svg?branch=master)](https://travis-ci.org/Microsoft/node-fast-plist) [![Coverage Status](https://coveralls.io/repos/github/Microsoft/node-fast-plist/badge.svg?branch=master)](https://coveralls.io/github/Microsoft/node-fast-plist?branch=master)\nA fast PLIST parser.\n\n\n## Installing\n\n```sh\nnpm install fast-plist\n```\n\n## Using\n\n```javascript\nvar parse = require('fast-plist').parse;\n\nconsole.log(\n parse(`\n <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <plist version=\"1.0\">\n <dict>\n <key>name</key>\n <string>Brogrammer</string>\n <key>settings</key>\n <dict>\n <key>background</key>\n <string>#1a1a1a</string>\n <key>caret</key>\n <string>#ecf0f1</string>\n <key>foreground</key>\n <string>#ecf0f1</string>\n <key>invisibles</key>\n <string>#F3FFB51A</string>\n <key>lineHighlight</key>\n <string>#2a2a2a</string>\n </dict>\n </dict>\n </plist>`\n )\n);\n/* Output:\n{\n \"name\": \"Brogrammer\",\n \"settings\": {\n \"background\": \"#1a1a1a\",\n \"caret\": \"#ecf0f1\",\n \"foreground\": \"#ecf0f1\",\n \"invisibles\": \"#F3FFB51A\",\n \"lineHighlight\": \"#2a2a2a\"\n }\n}\n*/\n```\n\n```javascript\n\nparse(`bad string`);\n\n/* Output:\n\nError: Near offset 1: expected < ~~~ad string~~~\n*/\n```\n\n## Development\n\n* `npm run watch`\n* `npm run test`\n\n## Code of Conduct\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n\n\n## License\n[MIT](https://github.com/Microsoft/node-fast-plist/blob/master/LICENSE.md)\n", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git+https://github.com/Microsoft/node-fast-plist.git" }, "scripts": { "prepublish": "tsc", "test": "mocha release/test/test", "test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec release/test/test", "watch": "tsc -w" }, "typings": "./release/src/main.d.ts", "version": "0.1.2" }