Files
awesome-cordova-plugins/package.json
T

108 lines
3.2 KiB
JSON
Raw Normal View History

2015-11-24 14:04:16 -06:00
{
2015-11-27 23:05:15 -06:00
"name": "ionic-native",
2021-06-29 15:22:06 +02:00
"version": "5.34.0",
2016-02-18 12:41:20 -06:00
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
2017-06-01 19:01:42 +02:00
"homepage": "https://ionicframework.com/",
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
"license": "MIT",
2017-12-28 07:28:44 -05:00
"scripts": {
2021-05-11 08:21:55 +02:00
"prepare": "is-ci || husky install",
2017-12-28 07:28:44 -05:00
"test": "jest",
"test:watch": "jest --watch",
"build:core": "tsc -p tsconfig.core.json",
2018-04-09 15:18:38 -04:00
"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",
2017-12-28 07:28:44 -05:00
"build": "npm run build:core && npm run build:esm && npm run build:ngx && npm run build:es5",
"prebuild": "rimraf -rf dist",
2018-04-09 16:03:09 -04:00
"npmpub": "ts-node -P scripts/tsconfig.json scripts/tasks/publish",
2017-12-28 07:28:44 -05:00
"lint": "gulp lint",
"readmes": "gulp readmes",
2019-03-05 13:22:58 -06:00
"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",
2020-05-16 14:40:25 +02:00
"shipit": "npm run build && npm run readmes && npm run npmpub",
2021-05-11 08:21:55 +02:00
"prettier": "prettier src/**/* --write"
2017-12-28 07:28:44 -05:00
},
2021-01-23 18:33:36 +01:00
"dependencies": {
2021-06-29 15:19:46 +02:00
"tslib": "^2.3.0"
2021-01-23 18:33:36 +01:00
},
2016-01-25 16:20:36 -06:00
"devDependencies": {
2021-05-28 17:11:44 +02:00
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/compiler-cli": "^11.2.14",
"@angular/core": "^11.2.14",
2017-05-13 22:44:10 -04:00
"@types/cordova": "0.0.34",
2021-08-02 22:47:45 +02:00
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^12.20.18",
"@types/rimraf": "^3.0.1",
2021-05-28 17:37:28 +02:00
"@types/webpack": "^5.28.0",
2019-05-16 07:04:01 +02:00
"async-promise-queue": "^1.0.5",
2020-11-20 23:54:04 +01:00
"conventional-changelog-cli": "^2.1.1",
2020-10-16 19:25:41 +02:00
"cz-conventional-changelog": "^3.3.0",
2021-04-05 23:41:28 +02:00
"dgeni": "^0.4.14",
"dgeni-packages": "0.16.10",
2021-05-11 08:21:55 +02:00
"fs-extra": "^10.0.0",
2019-07-12 20:09:33 +02:00
"gulp": "^4.0.2",
2019-12-09 06:57:44 +01:00
"gulp-rename": "^2.0.0",
2021-05-11 08:21:55 +02:00
"gulp-replace": "^1.1.3",
2019-03-19 18:34:22 +01:00
"gulp-tslint": "^8.1.4",
2021-08-02 22:47:45 +02:00
"husky": "^7.0.1",
2021-05-11 08:21:55 +02:00
"is-ci": "^3.0.0",
2021-06-29 15:19:46 +02:00
"jest": "^27.0.6",
2021-08-02 22:47:45 +02:00
"lint-staged": "^11.1.1",
2021-04-05 23:41:28 +02:00
"lodash": "^4.17.21",
2020-03-22 11:09:42 +01:00
"minimist": "^1.2.5",
2018-12-01 17:04:03 +01:00
"natives": "^1.1.6",
2021-06-29 15:19:46 +02:00
"prettier": "^2.3.2",
2020-02-09 12:31:46 +01:00
"rimraf": "^3.0.2",
2021-08-02 22:47:45 +02:00
"rollup": "^2.55.1",
2021-04-05 23:41:28 +02:00
"rxjs": "^6.6.7",
2021-08-02 22:47:45 +02:00
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
2021-01-23 18:33:36 +01:00
"tslint": "~6.1.0",
2020-05-16 14:40:25 +02:00
"tslint-config-prettier": "^1.18.0",
2018-12-07 13:41:16 +01:00
"tslint-ionic-rules": "0.0.21",
2020-08-14 17:53:47 +02:00
"typedoc": "^0.18.0",
"typescript": "4.1.6",
2021-01-23 18:33:36 +01:00
"typescript-tslint-plugin": "^1.0.1",
2019-08-09 11:11:10 +02:00
"uglifyjs-webpack-plugin": "^2.2.0",
2021-05-28 17:37:28 +02:00
"unminified-webpack-plugin": "^3.0.0",
2021-08-02 22:47:45 +02:00
"webpack": "^5.48.0",
2020-08-14 17:53:47 +02:00
"winston": "^3.3.3",
2021-04-05 23:41:28 +02:00
"zone.js": "^0.11.4"
2016-01-25 16:20:36 -06:00
},
2017-12-28 07:28:44 -05:00
"jest": {
2021-05-28 17:15:20 +02:00
"testEnvironment": "jsdom",
2017-12-28 07:28:44 -05:00
"transform": {
2018-09-17 15:41:59 +02:00
"^.+\\.tsx?$": "ts-jest"
2017-12-28 07:28:44 -05:00
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
2015-11-24 14:04:16 -06:00
},
2017-06-01 19:01:42 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic-native.git"
},
"bugs": {
"url": "https://github.com/ionic-team/ionic-native/issues"
},
2016-02-18 13:55:37 -06:00
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
2020-02-07 11:51:47 -05:00
},
2020-05-16 14:40:25 +02:00
"lint-staged": {
2020-05-16 14:44:54 +02:00
"*": [
2021-05-11 08:21:55 +02:00
"prettier src/**/* --write"
2020-05-16 14:40:25 +02:00
]
2016-02-18 13:55:37 -06:00
}
2021-05-28 17:17:50 +02:00
}