Skip to content

CB-14145 update dependencies #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ grammar. Other tests will use the prebuilt parser (`lib/parser/pbxproj.js`).

To rebuild the parser js file after editing the grammar, run:

./node_modules/.bin/pegjs lib/parser/pbxproj.pegjs
npm run pegjs

(easier if `./node_modules/.bin` is in your path)
(and be sure to restore the Apache license notice in
`lib/parser/pbxproj.js` before committing)

## License

Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@
"node": ">=0.6.7"
},
"dependencies": {
"pegjs": "^0.10.0",
"simple-plist": "^0.2.1",
"uuid": "3.0.1"
},
"devDependencies": {
"nodeunit": "^0.11.0"
"nodeunit": "^0.11.3",
"pegjs": "^0.10.0"
},
"scripts": {
"pegjs": "node_modules/.bin/pegjs lib/parser/pbxproj.pegjs",
"test": "node_modules/.bin/nodeunit test/parser test"
},
"license": "Apache-2.0",
Expand All @@ -43,7 +44,5 @@
{
"name": "Bob Easterday"
}

]

}