awesome-cordova-plugins/package.json

77 lines
2.3 KiB
JSON
Raw Normal View History

2015-11-25 04:04:16 +08:00
{
2015-11-28 13:05:15 +08:00
"name": "ionic-native",
2017-01-21 04:52:47 +08:00
"version": "2.2.17",
"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",
2016-03-06 22:35:32 +08:00
"files": [
"dist"
],
2015-11-30 09:54:45 +08:00
"dependencies": {
2017-01-10 20:13:08 +08:00
"rxjs": "5.0.0-beta.12"
2015-11-30 09:54:45 +08:00
},
"devDependencies": {
2017-01-10 20:40:21 +08:00
"browserify": "^13.3.0",
"canonical-path": "0.0.2",
"conventional-changelog-cli": "^1.2.0",
"conventional-github-releaser": "^1.1.3",
2017-01-10 20:40:21 +08:00
"cpr": "^2.0.2",
"cz-conventional-changelog": "^1.2.0",
"decamelize": "^1.2.0",
"dgeni": "^0.4.2",
"dgeni-packages": "^0.10.18",
2017-01-10 20:40:21 +08:00
"es6-shim": "~0.35.2",
"glob": "^7.1.1",
"gulp": "^3.9.1",
2016-04-30 06:08:16 +08:00
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-tslint": "^6.1.2",
2017-01-10 20:40:21 +08:00
"gulp-uglify": "^2.0.0",
"jasmine-core": "~2.5.2",
"karma": "~1.3.0",
2016-09-07 09:42:29 +08:00
"karma-browserify": "~5.1.0",
2017-01-10 20:40:21 +08:00
"karma-jasmine": "~1.1.0",
2016-09-07 09:42:29 +08:00
"karma-phantomjs-launcher": "~1.0.2",
2017-01-10 20:40:21 +08:00
"lodash": "4.17.4",
"minimist": "^1.1.3",
"mkdirp": "^0.5.1",
"node-html-encoder": "0.0.2",
"q": "1.4.1",
2017-01-10 20:40:21 +08:00
"semver": "^5.3.0",
"tsify": "~3.0.0",
"tslint": "^3.15.1",
"tslint-ionic-rules": "0.0.7",
2017-01-09 20:12:58 +08:00
"typescript": "~2.0.10",
2016-09-07 09:42:29 +08:00
"watchify": "~3.7.0"
},
2015-11-25 04:04:16 +08:00
"scripts": {
2016-09-07 09:42:29 +08:00
"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",
2016-09-22 04:12:27 +08:00
"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"
2015-11-25 04:04:16 +08:00
},
"repository": {
"type": "git",
2015-11-28 13:05:15 +08:00
"url": "https://github.com/driftyco/ionic-native.git"
2015-11-25 04:04:16 +08:00
},
2015-11-25 09:57:33 +08:00
"license": "MIT",
2015-11-25 04:04:16 +08:00
"bugs": {
2015-11-28 13:05:15 +08:00
"url": "https://github.com/driftyco/ionic-native/issues"
2015-11-25 04:04:16 +08:00
},
2015-11-25 08:37:29 +08:00
"homepage": "https://github.com/driftyco/ionic-native",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
2016-03-06 05:41:53 +08:00
}