GT2/GT2-iOS/node_modules/bplist-creator/package.json

95 lines
4.4 KiB
JSON

{
"_args": [
[
{
"raw": "bplist-creator@0.0.7",
"scope": null,
"escapedName": "bplist-creator",
"name": "bplist-creator",
"rawSpec": "0.0.7",
"spec": "0.0.7",
"type": "version"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/simple-plist"
]
],
"_from": "bplist-creator@0.0.7",
"_id": "bplist-creator@0.0.7",
"_inCache": true,
"_location": "/bplist-creator",
"_nodeVersion": "5.11.1",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/bplist-creator-0.0.7.tgz_1472949121897_0.6429064173717052"
},
"_npmUser": {
"name": "joeferner",
"email": "joe@fernsroth.com"
},
"_npmVersion": "3.8.6",
"_phantomChildren": {},
"_requested": {
"raw": "bplist-creator@0.0.7",
"scope": null,
"escapedName": "bplist-creator",
"name": "bplist-creator",
"rawSpec": "0.0.7",
"spec": "0.0.7",
"type": "version"
},
"_requiredBy": [
"/simple-plist"
],
"_resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz",
"_shasum": "37df1536092824b87c42f957b01344117372ae45",
"_shrinkwrap": null,
"_spec": "bplist-creator@0.0.7",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/simple-plist",
"author": {
"name": "https://github.com/nearinfinity/node-bplist-parser.git"
},
"bugs": {
"url": "https://github.com/nearinfinity/node-bplist-creator/issues"
},
"dependencies": {
"stream-buffers": "~2.2.0"
},
"description": "Binary Mac OS X Plist (property list) creator.",
"devDependencies": {
"bplist-parser": "~0.1.0",
"nodeunit": "0.9.1"
},
"directories": {},
"dist": {
"shasum": "37df1536092824b87c42f957b01344117372ae45",
"tarball": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz"
},
"gitHead": "d39765ffd3fa678104fefc444a63ba6b60eee797",
"homepage": "https://github.com/nearinfinity/node-bplist-creator#readme",
"keywords": [
"bplist",
"plist",
"creator"
],
"license": "MIT",
"main": "bplistCreator.js",
"maintainers": [
{
"name": "joeferner",
"email": "joe@fernsroth.com"
}
],
"name": "bplist-creator",
"optionalDependencies": {},
"readme": "bplist-parser\n=============\n\nBinary Mac OS X Plist (property list) creator.\n\n## Installation\n\n```bash\n$ npm install bplist-creator\n```\n\n## Quick Examples\n\n```javascript\nvar bplist = require('bplist-creator');\n\nvar buffer = bplist({\n key1: [1, 2, 3]\n});\n```\n\n## Real/Double/Float handling\n\nJavascript don't have different types for `1` and `1.0`. This package\nwill automatically store numbers as the appropriate type, but can't\ndetect floats that is also integers.\n\nIf you need to force a value to be written with the `real` type pass\nan instance of `Real`.\n\n```javascript\nvar buffer = bplist({\n backgroundRed: new bplist.Real(1),\n backgroundGreen: new bplist.Real(0),\n backgroundBlue: new bplist.Real(0)\n});\n```\n\nIn `xml` the corresponding tags is `<integer>` and `<real>`.\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2012 Near Infinity Corporation\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/nearinfinity/node-bplist-creator.git"
},
"scripts": {
"test": "./node_modules/nodeunit/bin/nodeunit test"
},
"version": "0.0.7"
}