-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 830 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 830 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
25
26
{
"author": "Apache Software Foundation",
"name": "xcode",
"description": "parser for xcodeproj/project.pbxproj files",
"version": "4.0.0-dev.0",
"main": "index.js",
"repository": "github:apache/cordova-node-xcode",
"bugs": "https://github.com/apache/cordova-node-xcode/issues",
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"simple-plist": "^1.1.0"
},
"devDependencies": {
"@cordova/eslint-config": "^6.0.1",
"pegjs": "^0.10.0"
},
"scripts": {
"pegjs": "node_modules/.bin/pegjs lib/parser/pbxproj.pegjs",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"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"
}