UNPKG

1.96 kBJSONView Raw
1{
2 "name": "ionic",
3 "version": "4.0.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": "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 },
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": "1.0.0",
48 "@ionic/cli-utils": "2.0.0",
49 "chalk": "^2.3.0",
50 "debug": "^3.1.0",
51 "lodash": "^4.17.5",
52 "opn": "^5.2.0",
53 "semver": "^5.5.0",
54 "tslib": "^1.9.0",
55 "update-notifier": "^2.3.0"
56 },
57 "devDependencies": {
58 "@types/debug": "0.0.30",
59 "@types/lodash": "^4.14.104",
60 "@types/node": "^6.0.101",
61 "@types/opn": "^5.1.0",
62 "@types/update-notifier": "^2.0.0",
63 "jest": "^23.0.1",
64 "jest-cli": "^23.0.1",
65 "rimraf": "^2.6.2",
66 "ts-jest": "^23.0.0",
67 "tslint": "^5.9.1",
68 "typescript": "~2.9.1"
69 },
70 "jest": {
71 "globals": {
72 "ts-jest": {
73 "tsConfigFile": "tsconfig.json"
74 }
75 },
76 "moduleFileExtensions": [
77 "ts",
78 "js"
79 ],
80 "transform": {
81 ".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
82 },
83 "testRegex": "/__tests__/.*\\.(ts|js)$"
84 }
85}