mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 07:02:51 +08:00
0e6ad28e56
* chore: drop q module * chore: fix & complete dropping q * Fix faulty transformation of Q.when * Simplify thenResolve transformation * Removes unnecesary Promise wrapping in onFulfilled callback. * Transform .done calls to .then or .catch * The important thing is that we always handle rejections. * Remove Q from specs Requires Jasmine 3.5 * Replace Q.timeout w/ Promise.race & custom function Co-authored-by: Raphael von der Grün <raphinesse@gmail.com>
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "cordova-android",
|
|
"version": "9.0.0-dev",
|
|
"description": "cordova-android release",
|
|
"bin": {
|
|
"create": "bin/create"
|
|
},
|
|
"main": "bin/templates/cordova/Api.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/apache/cordova-android"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/apache/cordova-android/issues"
|
|
},
|
|
"keywords": [
|
|
"android",
|
|
"cordova",
|
|
"apache"
|
|
],
|
|
"scripts": {
|
|
"test": "npm run eslint && npm run cover && npm run java-unit-tests",
|
|
"unit-tests": "jasmine --config=spec/unit/jasmine.json",
|
|
"cover": "nyc jasmine --config=spec/coverage.json",
|
|
"e2e-tests": "jasmine --config=spec/e2e/jasmine.json",
|
|
"java-unit-tests": "node test/run_java_unit_tests.js",
|
|
"eslint": "eslint . \"bin/**/!(*.*|gitignore)\""
|
|
},
|
|
"author": "Apache Software Foundation",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"android-versions": "^1.4.0",
|
|
"compare-func": "^1.3.2",
|
|
"cordova-common": "^3.2.0",
|
|
"execa": "^3.2.0",
|
|
"nopt": "^4.0.1",
|
|
"properties-parser": "^0.3.1",
|
|
"shelljs": "^0.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.12.0",
|
|
"eslint-config-semistandard": "^13.0.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-node": "^8.0.1",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"jasmine": "^3.5.0",
|
|
"jasmine-spec-reporter": "^4.2.1",
|
|
"nyc": "^14.1.1",
|
|
"rewire": "^4.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"engineStrict": true,
|
|
"nyc": {
|
|
"include": [
|
|
"bin/lib/**",
|
|
"bin/templates/cordova/**"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"text"
|
|
]
|
|
}
|
|
}
|