55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"name": "cordova-create",
|
|
"version": "5.0.0",
|
|
"description": "Apache Cordova create module. Creates new project from default or template",
|
|
"main": "index.js",
|
|
"repository": "github:apache/cordova-create",
|
|
"bugs": "https://github.com/apache/cordova-create/issues",
|
|
"keywords": [
|
|
"cordova",
|
|
"create",
|
|
"apache",
|
|
"ecosystem:cordova",
|
|
"cordova:tool"
|
|
],
|
|
"author": "Apache Software Foundation",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=16.13.0"
|
|
},
|
|
"dependencies": {
|
|
"cordova-app-hello-world": "^6.0.0",
|
|
"cordova-common": "^5.0.0",
|
|
"cordova-fetch": "^4.0.0",
|
|
"fs-extra": "^11.1.1",
|
|
"globby": "^11.1.0",
|
|
"import-fresh": "^3.3.0",
|
|
"isobject": "^4.0.0",
|
|
"npm-package-arg": "^10.1.0",
|
|
"path-is-inside": "^1.0.2",
|
|
"tmp": "^0.2.1",
|
|
"valid-identifier": "0.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@cordova/eslint-config": "^5.0.0",
|
|
"jasmine": "^4.6.0",
|
|
"nyc": "^15.1.0",
|
|
"rewire": "^6.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run lint && npm run cover",
|
|
"lint": "eslint .",
|
|
"jasmine": "jasmine \"spec/**/*.spec.js\"",
|
|
"cover": "nyc npm run jasmine"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"index.js"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"text"
|
|
]
|
|
}
|
|
}
|