2015-10-21 07:15:57 +08:00
|
|
|
{
|
2016-11-03 07:32:15 +08:00
|
|
|
"name": "cordova-android",
|
2020-06-23 17:31:47 +08:00
|
|
|
"version": "9.0.0",
|
2016-11-03 07:32:15 +08:00
|
|
|
"description": "cordova-android release",
|
|
|
|
"bin": {
|
|
|
|
"create": "bin/create"
|
|
|
|
},
|
|
|
|
"main": "bin/templates/cordova/Api.js",
|
2020-04-15 10:53:22 +08:00
|
|
|
"repository": "github:apache/cordova-android",
|
|
|
|
"bugs": "https://github.com/apache/cordova-android/issues",
|
2016-11-03 07:32:15 +08:00
|
|
|
"keywords": [
|
|
|
|
"android",
|
|
|
|
"cordova",
|
|
|
|
"apache"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2020-01-31 21:02:48 +08:00
|
|
|
"test": "npm run lint && npm run cover && npm run java-unit-tests",
|
2017-06-28 01:02:38 +08:00
|
|
|
"unit-tests": "jasmine --config=spec/unit/jasmine.json",
|
2019-01-08 14:50:41 +08:00
|
|
|
"cover": "nyc jasmine --config=spec/coverage.json",
|
2017-06-28 01:02:38 +08:00
|
|
|
"e2e-tests": "jasmine --config=spec/e2e/jasmine.json",
|
2018-06-13 22:09:08 +08:00
|
|
|
"java-unit-tests": "node test/run_java_unit_tests.js",
|
2020-01-31 21:02:48 +08:00
|
|
|
"lint": "eslint . \"bin/**/!(*.*|gitignore)\"",
|
2020-01-21 18:24:00 +08:00
|
|
|
"clean-tests": "node bin/clean_test.js"
|
2016-11-03 07:32:15 +08:00
|
|
|
},
|
|
|
|
"author": "Apache Software Foundation",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2020-04-15 11:20:28 +08:00
|
|
|
"android-versions": "^1.5.0",
|
2020-06-10 23:47:17 +08:00
|
|
|
"cordova-common": "^4.0.1",
|
|
|
|
"execa": "^4.0.2",
|
|
|
|
"fs-extra": "^9.0.1",
|
2020-04-15 11:20:28 +08:00
|
|
|
"nopt": "^4.0.3",
|
2019-01-08 14:35:49 +08:00
|
|
|
"properties-parser": "^0.3.1",
|
2020-04-15 11:20:28 +08:00
|
|
|
"which": "^2.0.2"
|
2016-11-03 07:32:15 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-15 11:36:40 +08:00
|
|
|
"@cordova/eslint-config": "^3.0.0",
|
2019-11-04 04:44:16 +08:00
|
|
|
"jasmine": "^3.5.0",
|
2020-06-10 21:27:11 +08:00
|
|
|
"jasmine-spec-reporter": "^5.0.2",
|
|
|
|
"nyc": "^15.1.0",
|
2020-04-15 11:20:28 +08:00
|
|
|
"rewire": "^5.0.0"
|
2017-04-06 04:59:27 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2020-01-06 11:10:03 +08:00
|
|
|
"node": ">=10.0.0"
|
2017-04-06 04:59:27 +08:00
|
|
|
},
|
2019-01-08 14:36:54 +08:00
|
|
|
"engineStrict": true,
|
|
|
|
"nyc": {
|
|
|
|
"include": [
|
|
|
|
"bin/lib/**",
|
|
|
|
"bin/templates/cordova/**"
|
|
|
|
],
|
|
|
|
"reporter": [
|
|
|
|
"lcov",
|
|
|
|
"text"
|
|
|
|
]
|
|
|
|
}
|
2017-06-10 02:18:57 +08:00
|
|
|
}
|