UNPKG

2.07 kBJSONView Raw
1{
2 "name": "@ionic/cli-plugin-cordova",
3 "version": "1.3.0",
4 "description": "Ionic Cordova Plugin for Ionic CLI",
5 "homepage": "https://ionic.io/",
6 "author": "Ionic Team <hi@ionic.io> (http://ionic.io)",
7 "main": "./dist/index.js",
8 "types": "./dist/main.d.ts",
9 "scripts": {
10 "clean": "rm -rf ./dist",
11 "lint": "tslint -c ../../tslint.json \"src/**/*.ts\"",
12 "build": "npm run clean && npm run build-ts && npm run build-js",
13 "build-ts": "tsc",
14 "build-js": "npm run script-prepublish && cp ./resources.json ./dist/resources.json",
15 "watch": "concurrently -p \"{name} \" -n \"TS,JS\" -c \"cyan.bold,yellow.dim\" \"npm run watch-ts\" \"npm run watch-js\"",
16 "watch-ts": "tsc -w",
17 "watch-js": "cross-env IONIC_PREPUBLISH_PLUGIN_VERSION=${npm_package_version}-local \"npm run watch-js-chokidar\"",
18 "watch-js-chokidar": "chokidar --silent \"dist/**/*.js\" -c \"npm run build-js\"",
19 "script-prepublish": "cli-scripts-prepublish cli-plugin-cordova",
20 "test": "jest",
21 "prepublish": "in-publish && npm run build || not-in-publish"
22 },
23 "keywords": [
24 "ionic",
25 "cordova",
26 "ionic framework",
27 "ionicframework",
28 "ionic cordova",
29 "mobile",
30 "backend",
31 "app",
32 "hybrid",
33 "cordova",
34 "native",
35 "phonegap"
36 ],
37 "repository": {
38 "type": "git",
39 "url": "https://github.com/ionic-team/ionic-cli.git"
40 },
41 "bugs": {
42 "url": "https://github.com/ionic-team/ionic-cli/issues"
43 },
44 "files": [
45 "bin/",
46 "default-resources",
47 "dist/",
48 "resources.json"
49 ],
50 "license": "MIT",
51 "jest": {
52 "moduleFileExtensions": [
53 "ts",
54 "js"
55 ],
56 "transform": {
57 ".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
58 },
59 "testRegex": "/__tests__/.*\\.(ts|js)$"
60 },
61 "dependencies": {
62 "@ionic/cli-utils": "1.3.0",
63 "chalk": "^1.1.3",
64 "xml2js": "^0.4.17"
65 },
66 "devDependencies": {
67 "@ionic/cli-scripts": "0.2.0",
68 "@types/chalk": "^0.4.31",
69 "@types/xml2js": "0.0.33",
70 "chalk": "^1.1.3",
71 "xml2js": "^0.4.17"
72 }
73}