58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "cordova",
|
|
"version": "12.0.0",
|
|
"description": "Cordova command line interface tool",
|
|
"main": "cordova",
|
|
"engines": {
|
|
"node": ">=16.13.0"
|
|
},
|
|
"bin": {
|
|
"cordova": "./bin/cordova"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run lint && npm run cover",
|
|
"lint": "eslint . bin/cordova",
|
|
"cover": "nyc jasmine"
|
|
},
|
|
"repository": "github:apache/cordova-cli",
|
|
"bugs": "https://github.com/apache/cordova-cli/issues",
|
|
"keywords": [
|
|
"cordova",
|
|
"client",
|
|
"cli"
|
|
],
|
|
"dependencies": {
|
|
"configstore": "^5.0.1",
|
|
"cordova-common": "^5.0.0",
|
|
"cordova-create": "^5.0.0",
|
|
"cordova-lib": "^12.0.0",
|
|
"editor": "^1.0.0",
|
|
"execa": "^5.1.1",
|
|
"fs-extra": "^11.1.1",
|
|
"insight": "^0.11.1",
|
|
"loud-rejection": "^2.2.0",
|
|
"nopt": "^7.1.0",
|
|
"semver": "^7.5.0",
|
|
"systeminformation": "^5.17.12"
|
|
},
|
|
"devDependencies": {
|
|
"@cordova/eslint-config": "^5.0.0",
|
|
"jasmine": "^4.6.0",
|
|
"mock-stdin": "^1.0.0",
|
|
"nyc": "^15.1.0",
|
|
"rewire": "^6.0.0"
|
|
},
|
|
"author": "Apache Software Foundation",
|
|
"license": "Apache-2.0",
|
|
"nyc": {
|
|
"include": [
|
|
"bin/**",
|
|
"src/**"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"text"
|
|
]
|
|
}
|
|
}
|