UNPKG

2.08 kBJSONView Raw
1{
2 "name": "ionic",
3 "version": "4.0.2",
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 "*.{ts,tsx}": "npm run lint"
26 },
27 "files": [
28 "bin/",
29 "dist/"
30 ],
31 "keywords": [
32 "ionic",
33 "ionic framework",
34 "ionicframework",
35 "mobile",
36 "app",
37 "hybrid",
38 "cordova",
39 "native",
40 "phonegap"
41 ],
42 "repository": {
43 "type": "git",
44 "url": "https://github.com/ionic-team/ionic-cli.git"
45 },
46 "bugs": {
47 "url": "https://github.com/ionic-team/ionic-cli/issues"
48 },
49 "license": "MIT",
50 "dependencies": {
51 "@ionic/cli-framework": "1.0.1",
52 "@ionic/cli-utils": "2.0.2",
53 "chalk": "^2.3.0",
54 "debug": "^3.1.0",
55 "lodash": "^4.17.5",
56 "opn": "^5.2.0",
57 "semver": "^5.5.0",
58 "tslib": "^1.9.0",
59 "update-notifier": "^2.3.0"
60 },
61 "devDependencies": {
62 "@types/debug": "0.0.30",
63 "@types/lodash": "^4.14.104",
64 "@types/node": "^6.0.101",
65 "@types/opn": "^5.1.0",
66 "@types/update-notifier": "^2.0.0",
67 "jest": "^23.0.1",
68 "jest-cli": "^23.0.1",
69 "lint-staged": "^7.2.0",
70 "rimraf": "^2.6.2",
71 "ts-jest": "^23.0.0",
72 "tslint": "^5.9.1",
73 "typescript": "~2.9.1"
74 },
75 "jest": {
76 "globals": {
77 "ts-jest": {
78 "tsConfigFile": "tsconfig.json"
79 }
80 },
81 "moduleFileExtensions": [
82 "ts",
83 "js"
84 ],
85 "transform": {
86 ".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
87 },
88 "testRegex": "/__tests__/.*\\.(ts|js)$"
89 }
90}