mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-18 16:02:53 +08:00
110 lines
3.2 KiB
JSON
110 lines
3.2 KiB
JSON
{
|
|
"name": "ionic-native",
|
|
"version": "5.26.0",
|
|
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
|
|
"homepage": "https://ionicframework.com/",
|
|
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"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": "gulp lint",
|
|
"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 \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\""
|
|
},
|
|
"devDependencies": {
|
|
"@angular/common": "^9.1.7",
|
|
"@angular/compiler": "^9.1.7",
|
|
"@angular/compiler-cli": "^9.1.7",
|
|
"@angular/core": "^9.1.7",
|
|
"@types/cordova": "0.0.34",
|
|
"@types/fs-extra": "^9.0.1",
|
|
"@types/jest": "^25.2.3",
|
|
"@types/lodash": "^4.14.152",
|
|
"@types/node": "^12.12.41",
|
|
"@types/rimraf": "^3.0.0",
|
|
"@types/webpack": "^4.41.13",
|
|
"ajv": "^6.12.2",
|
|
"async-promise-queue": "^1.0.5",
|
|
"conventional-changelog-cli": "^2.0.34",
|
|
"cz-conventional-changelog": "^3.2.0",
|
|
"dgeni": "^0.4.12",
|
|
"dgeni-packages": "0.16.10",
|
|
"fs-extra": "^9.0.0",
|
|
"gulp": "^4.0.2",
|
|
"gulp-rename": "^2.0.0",
|
|
"gulp-replace": "^1.0.0",
|
|
"gulp-tslint": "^8.1.4",
|
|
"husky": "^4.2.5",
|
|
"jest": "^26.0.1",
|
|
"lint-staged": "^10.2.4",
|
|
"lodash": "^4.17.15",
|
|
"minimist": "^1.2.5",
|
|
"natives": "^1.1.6",
|
|
"prettier": "^2.0.5",
|
|
"rimraf": "^3.0.2",
|
|
"rxjs": "^6.5.5",
|
|
"ts-jest": "^26.0.0",
|
|
"ts-node": "^8.10.1",
|
|
"tslint": "^5.20.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-ionic-rules": "0.0.21",
|
|
"typedoc": "^0.17.7",
|
|
"typescript": "~3.8.3",
|
|
"typescript-tslint-plugin": "0.5.5",
|
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
"unminified-webpack-plugin": "^2.0.0",
|
|
"webpack": "^4.43.0",
|
|
"winston": "^3.2.1",
|
|
"zone.js": "^0.10.3"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"json"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ionic-team/ionic-native.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ionic-team/ionic-native/issues"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^1.13.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|