132 lines
4.2 KiB
JSON
132 lines
4.2 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "xcode@^0.9.1",
|
|
"scope": null,
|
|
"escapedName": "xcode",
|
|
"name": "xcode",
|
|
"rawSpec": "^0.9.1",
|
|
"spec": ">=0.9.1 <0.10.0",
|
|
"type": "range"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/react-native"
|
|
]
|
|
],
|
|
"_from": "xcode@>=0.9.1 <0.10.0",
|
|
"_id": "xcode@0.9.3",
|
|
"_inCache": true,
|
|
"_location": "/xcode",
|
|
"_nodeVersion": "6.9.5",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-12-west.internal.npmjs.com",
|
|
"tmp": "tmp/xcode-0.9.3.tgz_1491573003748_0.7576456561218947"
|
|
},
|
|
"_npmUser": {
|
|
"name": "anis",
|
|
"email": "anis.kadri@gmail.com"
|
|
},
|
|
"_npmVersion": "3.10.10",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "xcode@^0.9.1",
|
|
"scope": null,
|
|
"escapedName": "xcode",
|
|
"name": "xcode",
|
|
"rawSpec": "^0.9.1",
|
|
"spec": ">=0.9.1 <0.10.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/react-native"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/xcode/-/xcode-0.9.3.tgz",
|
|
"_shasum": "910a89c16aee6cc0b42ca805a6d0b4cf87211cf3",
|
|
"_shrinkwrap": null,
|
|
"_spec": "xcode@^0.9.1",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/react-native",
|
|
"author": {
|
|
"name": "Andrew Lunny",
|
|
"email": "alunny@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/alunny/node-xcode/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Andrew Lunny",
|
|
"url": "@alunny"
|
|
},
|
|
{
|
|
"name": "Anis Kadri",
|
|
"url": "@imhotep"
|
|
},
|
|
{
|
|
"name": "Mike Reinstein",
|
|
"url": "@mreinstein"
|
|
},
|
|
{
|
|
"name": "Filip Maj",
|
|
"url": "@filmaj"
|
|
},
|
|
{
|
|
"name": "Brett Rudd",
|
|
"url": "@goya"
|
|
},
|
|
{
|
|
"name": "Bob Easterday",
|
|
"url": "@bobeast"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"pegjs": "^0.10.0",
|
|
"simple-plist": "^0.2.1",
|
|
"uuid": "3.0.1"
|
|
},
|
|
"description": "parser for xcodeproj/project.pbxproj files",
|
|
"devDependencies": {
|
|
"nodeunit": "^0.11.0"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "910a89c16aee6cc0b42ca805a6d0b4cf87211cf3",
|
|
"tarball": "https://registry.npmjs.org/xcode/-/xcode-0.9.3.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.6.7"
|
|
},
|
|
"gitHead": "1cd220819906b62fc06c8833f905897600a53127",
|
|
"homepage": "https://github.com/alunny/node-xcode#readme",
|
|
"license": "Apache-2.0",
|
|
"main": "index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "alunny",
|
|
"email": "alunny@gmail.com"
|
|
},
|
|
{
|
|
"name": "filmaj",
|
|
"email": "maj.fil@gmail.com"
|
|
},
|
|
{
|
|
"name": "shepheb",
|
|
"email": "braden.shepherdson@gmail.com"
|
|
},
|
|
{
|
|
"name": "anis",
|
|
"email": "anis.kadri@gmail.com"
|
|
}
|
|
],
|
|
"name": "xcode",
|
|
"optionalDependencies": {},
|
|
"readme": "# node-xcode\n\n> parser/toolkit for xcodeproj project files\n\nAllows you to edit xcodeproject files and write them back out.\n\n## Example\n\n // API is a bit wonky right now\n var xcode = require('xcode'),\n fs = require('fs'),\n projectPath = 'myproject.xcodeproj/project.pbxproj',\n myProj = xcode.project(projectPath);\n\n // parsing is async, in a different process\n myProj.parse(function (err) {\n myProj.addHeaderFile('foo.h');\n myProj.addSourceFile('foo.m');\n myProj.addFramework('FooKit.framework');\n \n fs.writeFileSync(projectPath, myProj.writeSync());\n console.log('new project written');\n });\n\n## Working on the parser\n\nIf there's a problem parsing, you will want to edit the grammar under\n`lib/parser/pbxproj.pegjs`. You can test it online with the PEGjs online thingy\nat http://pegjs.majda.cz/online - I have had some mixed results though.\n\nTests under the `test/parser` directory will compile the parser from the\ngrammar. Other tests will use the prebuilt parser (`lib/parser/pbxproj.js`).\n\nTo rebuild the parser js file after editing the grammar, run:\n\n ./node_modules/.bin/pegjs lib/parser/pbxproj.pegjs\n\n(easier if `./node_modules/.bin` is in your path)\n\n## License\n\nApache V2\n",
|
|
"readmeFilename": "README.md",
|
|
"repository": {
|
|
"url": "git+https://github.com/alunny/node-xcode.git"
|
|
},
|
|
"scripts": {
|
|
"test": "nodeunit test/parser test"
|
|
},
|
|
"version": "0.9.3"
|
|
}
|