mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 00:12:53 +08:00
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "ionic-native",
|
|
"version": "2.9.0",
|
|
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
|
|
"main": "dist/es5/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"typings": "dist/es5/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"rxjs": "5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^13.3.0",
|
|
"canonical-path": "0.0.2",
|
|
"conventional-changelog-cli": "^1.2.0",
|
|
"conventional-github-releaser": "^1.1.3",
|
|
"cpr": "^2.0.2",
|
|
"cz-conventional-changelog": "^1.2.0",
|
|
"decamelize": "^1.2.0",
|
|
"dgeni": "^0.4.2",
|
|
"dgeni-packages": "^0.10.18",
|
|
"es6-shim": "~0.35.2",
|
|
"glob": "^7.1.1",
|
|
"gulp": "^3.9.1",
|
|
"gulp-rename": "^1.2.2",
|
|
"gulp-replace": "^0.5.4",
|
|
"gulp-tslint": "^6.1.2",
|
|
"gulp-uglify": "^2.0.0",
|
|
"jasmine-core": "~2.5.2",
|
|
"karma": "~1.3.0",
|
|
"karma-browserify": "~5.1.0",
|
|
"karma-jasmine": "~1.1.0",
|
|
"karma-phantomjs-launcher": "~1.0.2",
|
|
"lodash": "4.17.4",
|
|
"minimist": "^1.1.3",
|
|
"mkdirp": "^0.5.1",
|
|
"node-html-encoder": "0.0.2",
|
|
"q": "1.4.1",
|
|
"semver": "^5.3.0",
|
|
"tsify": "~3.0.0",
|
|
"tslint": "^3.15.1",
|
|
"tslint-ionic-rules": "0.0.7",
|
|
"typescript": "2.0.9",
|
|
"watchify": "~3.7.0"
|
|
},
|
|
"scripts": {
|
|
"test": "karma start",
|
|
"test:watch": "npm test -- --watch",
|
|
"start": "npm run test:watch",
|
|
"lint": "gulp lint",
|
|
"build": "npm run lint && npm run build:js && npm run build:esm && npm run build:bundle && npm run build:minify",
|
|
"build:js": "tsc -p tsconfig-es5.json",
|
|
"build:esm": "tsc -p tsconfig-esm.json",
|
|
"build:bundle": "browserify dist/es5/index.js > dist/ionic.native.js",
|
|
"build:minify": "gulp minify:dist",
|
|
"shipit": "npm run build && npm publish && bash ./scripts/bower.sh",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
"plugin:create": "gulp plugin:create"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/driftyco/ionic-native.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/driftyco/ionic-native/issues"
|
|
},
|
|
"homepage": "https://github.com/driftyco/ionic-native",
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|