55 lines
1.5 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",
2016-03-17 15:02:03 -05:00
"version": "1.1.0",
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
2015-11-24 20:19:00 -06:00
"main": "dist/index.js",
2015-11-24 14:04:16 -06:00
"directories": {
"test": "test"
},
2016-03-06 08:35:32 -06:00
"files": [
"dist"
],
2015-11-29 19:54:45 -06:00
"dependencies": {
"rxjs": "5.0.0-beta.2"
2015-11-29 19:54:45 -06:00
},
"devDependencies": {
2016-02-05 19:21:27 -06:00
"browserify": "^13.0.0",
"canonical-path": "0.0.2",
2016-03-17 16:27:27 -04:00
"conventional-changelog": "^1.1.0",
"cpr": "^1.0.0",
"cz-conventional-changelog": "^1.1.5",
"dgeni": "^0.4.2",
"dgeni-packages": "^0.10.18",
"glob": "^6.0.4",
"gulp": "~3.9.0",
"lodash": "3.10.1",
"minimist": "^1.1.3",
"mkdirp": "^0.5.1",
"node-html-encoder": "0.0.2",
"q": "1.4.1",
"semver": "^5.0.1",
"typescript": "^1.7.5"
},
2015-11-24 14:04:16 -06:00
"scripts": {
2015-11-24 16:37:29 -08:00
"test": "echo \"Error: no test specified\" && exit 1",
2016-02-05 15:05:46 -06:00
"build": "tsc --module commonjs --sourcemap --outDir dist/ --experimentalDecorators -d typings/es6-shim/es6-shim.d.ts src/index.ts --target ES5",
2015-12-01 13:33:08 -06:00
"build_bundle": "npm run-script build && browserify dist/index.js > dist/ionic.native.js"
2015-11-24 14:04:16 -06:00
},
"repository": {
"type": "git",
2015-11-27 23:05:15 -06:00
"url": "https://github.com/driftyco/ionic-native.git"
2015-11-24 14:04:16 -06:00
},
"author": "",
2015-11-24 19:57:33 -06:00
"license": "MIT",
2015-11-24 14:04:16 -06:00
"bugs": {
2015-11-27 23:05:15 -06:00
"url": "https://github.com/driftyco/ionic-native/issues"
2015-11-24 14:04:16 -06:00
},
2015-11-24 16:37:29 -08:00
"homepage": "https://github.com/driftyco/ionic-native",
"typings": "./dist/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
2016-03-05 15:41:53 -06:00
}