forked from apache/cordova-node-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 744 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"author": "Apache Software Foundation",
"name": "xcode",
"description": "parser for xcodeproj/project.pbxproj files",
"version": "3.0.2-dev",
"main": "index.js",
"repository": "github:apache/cordova-node-xcode",
"bugs": "https://github.com/apache/cordova-node-xcode/issues",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"simple-plist": "^1.1.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"pegjs": "^0.10.0"
},
"scripts": {
"pegjs": "node_modules/.bin/pegjs lib/parser/pbxproj.pegjs",
"test": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=lcov.info"
},
"license": "Apache-2.0"
}