UNPKG

1.59 kBJSONView Raw
1{
2 "name": "ionic",
3 "version": "3.19.0",
4 "description": "A tool for creating and developing Ionic Framework mobile apps.",
5 "homepage": "https://ionicframework.com",
6 "author": "Ionic Team <hi@ionic.io> (https://ionicframework.com) ",
7 "bin": {
8 "ionic": "./bin/ionic"
9 },
10 "engines": {
11 "node": ">=6.4.0"
12 },
13 "main": "./dist/index.js",
14 "types": "./dist/index.d.ts",
15 "scripts": {
16 "clean": "rm -rf ./dist",
17 "lint": "tslint --config ../../tslint.js --project tsconfig.json --type-check",
18 "build": "npm run clean && tsc",
19 "watch": "tsc -w",
20 "test": "jest",
21 "prepublishOnly": "npm run build"
22 },
23 "files": [
24 "bin/",
25 "dist/"
26 ],
27 "keywords": [
28 "ionic",
29 "ionic framework",
30 "ionicframework",
31 "mobile",
32 "app",
33 "hybrid",
34 "cordova",
35 "native",
36 "phonegap"
37 ],
38 "repository": {
39 "type": "git",
40 "url": "https://github.com/ionic-team/ionic-cli.git"
41 },
42 "bugs": {
43 "url": "https://github.com/ionic-team/ionic-cli/issues"
44 },
45 "license": "MIT",
46 "dependencies": {
47 "@ionic/cli-framework": "0.1.2",
48 "@ionic/cli-utils": "1.19.0",
49 "chalk": "^2.3.0",
50 "opn": "^5.1.0",
51 "semver": "^5.3.0",
52 "tslib": "^1.8.0"
53 },
54 "devDependencies": {
55 "@types/opn": "^5.1.0"
56 },
57 "jest": {
58 "globals": {
59 "ts-jest": {
60 "tsConfigFile": "tsconfig.json"
61 }
62 },
63 "moduleFileExtensions": [
64 "ts",
65 "js"
66 ],
67 "transform": {
68 ".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
69 },
70 "testRegex": "/__tests__/.*\\.(ts|js)$"
71 }
72}