UNPKG

2.09 kBJSONView Raw
1{
2 "name": "ionic",
3 "version": "4.0.4",
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": "rimraf dist",
17 "lint": "tslint --config tslint.js --project tsconfig.json",
18 "build": "npm run clean && tsc",
19 "watch": "tsc -w --preserveWatchOutput",
20 "test": "jest",
21 "prepublishOnly": "npm run build",
22 "precommit": "lint-staged"
23 },
24 "lint-staged": {
25 "linters": {
26 "*.{ts,tsx}": "npm run lint"
27 },
28 "ignore": [
29 "**/__tests__/*.{ts,tsx}"
30 ]
31 },
32 "files": [
33 "bin/",
34 "dist/"
35 ],
36 "keywords": [
37 "ionic",
38 "ionic framework",
39 "ionicframework",
40 "mobile",
41 "app",
42 "hybrid",
43 "cordova",
44 "native",
45 "phonegap"
46 ],
47 "repository": {
48 "type": "git",
49 "url": "https://github.com/ionic-team/ionic-cli.git"
50 },
51 "bugs": {
52 "url": "https://github.com/ionic-team/ionic-cli/issues"
53 },
54 "license": "MIT",
55 "dependencies": {
56 "@ionic/cli-framework": "1.0.3",
57 "@ionic/cli-utils": "2.0.4",
58 "chalk": "^2.3.0",
59 "debug": "^3.1.0",
60 "lodash": "^4.17.5",
61 "opn": "^5.2.0",
62 "semver": "^5.5.0",
63 "tslib": "^1.9.0",
64 "update-notifier": "^2.3.0"
65 },
66 "devDependencies": {
67 "@types/debug": "0.0.30",
68 "@types/lodash": "^4.14.104",
69 "@types/node": "^6.0.101",
70 "@types/opn": "^5.1.0",
71 "@types/update-notifier": "^2.0.0",
72 "jest": "^23.0.1",
73 "jest-cli": "^23.0.1",
74 "lint-staged": "^7.2.0",
75 "rimraf": "^2.6.2",
76 "ts-jest": "^23.0.0",
77 "tslint": "^5.9.1",
78 "typescript": "~3.0.1"
79 },
80 "jest": {
81 "transform": {
82 "^.+\\.tsx?$": "ts-jest"
83 },
84 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
85 "moduleFileExtensions": [
86 "ts",
87 "tsx",
88 "js",
89 "jsx",
90 "json"
91 ]
92 }
93}