mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-18 16:02:53 +08:00
104 lines
3.2 KiB
JSON
104 lines
3.2 KiB
JSON
{
|
|
"name": "awesome-cordova-plugins",
|
|
"version": "6.10.0",
|
|
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
|
|
"homepage": "https://awesome-cordova-plugins.com",
|
|
"author": "Daniel Sogl <me@danielsogl.com> (https://danielsogl.com)",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prepare": "is-ci || husky install",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"build:core": "tsc -p tsconfig.core.json",
|
|
"build:esm": "ts-node -P scripts/tsconfig.json scripts/tasks/build-esm",
|
|
"build:es5": "ts-node -P scripts/tsconfig.json scripts/tasks/build-es5",
|
|
"build:ngx": "ts-node -P scripts/tsconfig.json scripts/tasks/build-ngx",
|
|
"build": "npm run build:core && npm run build:esm && npm run build:ngx && npm run build:es5",
|
|
"prebuild": "rimraf -rf dist",
|
|
"npmpub": "ts-node -P scripts/tsconfig.json scripts/tasks/publish",
|
|
"lint": "eslint src/**/*.ts",
|
|
"readmes": "gulp readmes",
|
|
"docs-json": "ts-node -P scripts/tsconfig.json scripts/docs-json",
|
|
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
|
|
"shipit": "npm run build && npm run readmes && npm run npmpub",
|
|
"prettier": "prettier --write --ignore-unknown \"**/*\""
|
|
},
|
|
"dependencies": {
|
|
"tslib": "2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular/common": "12.2.17",
|
|
"@angular/compiler": "12.2.17",
|
|
"@angular/compiler-cli": "12.2.17",
|
|
"@angular/core": "12.2.17",
|
|
"@types/cordova": "11.0.3",
|
|
"@types/fs-extra": "11.0.4",
|
|
"@types/jest": "27.5.2",
|
|
"@types/lodash": "4.17.5",
|
|
"@types/node": "20.14.10",
|
|
"@types/rimraf": "4.0.5",
|
|
"@types/webpack": "5.28.5",
|
|
"@typescript-eslint/eslint-plugin": "5.62.0",
|
|
"@typescript-eslint/parser": "5.62.0",
|
|
"async-promise-queue": "1.0.5",
|
|
"conventional-changelog-cli": "5.0.0",
|
|
"cz-conventional-changelog": "3.3.0",
|
|
"dgeni": "0.4.14",
|
|
"dgeni-packages": "0.16.10",
|
|
"eslint": "8.57.1",
|
|
"eslint-config-prettier": "8.10.0",
|
|
"eslint-plugin-jsdoc": "50.3.2",
|
|
"fs-extra": "11.2.0",
|
|
"gulp": "5.0.0",
|
|
"gulp-rename": "2.0.0",
|
|
"gulp-replace": "1.1.4",
|
|
"husky": "9.1.6",
|
|
"is-ci": "3.0.1",
|
|
"jest": "27.5.1",
|
|
"lint-staged": "15.2.10",
|
|
"lodash": "4.17.21",
|
|
"minimist": "1.2.8",
|
|
"prettier": "2.8.8",
|
|
"rimraf": "5.0.5",
|
|
"rollup": "4.24.0",
|
|
"rxjs": "6.6.7",
|
|
"terser-webpack-plugin": "5.3.10",
|
|
"ts-jest": "27.1.5",
|
|
"ts-node": "10.9.2",
|
|
"typescript": "4.2.4",
|
|
"unminified-webpack-plugin": "3.0.0",
|
|
"webpack": "5.74.0",
|
|
"winston": "3.14.2",
|
|
"zone.js": "0.11.8"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "jsdom",
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"json"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/danielsogl/awesome-cordova-plugins.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/danielsogl/awesome-cordova-plugins/issues"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|