UNPKG

2.63 kBJSONView Raw
1{
2 "name": "@ionic/cli-utils",
3 "version": "2.2.1",
4 "description": "Ionic CLI Utils",
5 "homepage": "https://ionicframework.com",
6 "author": "Ionic Team <hi@ionic.io> (https://ionicframework.com)",
7 "main": "./index.js",
8 "types": "./index.d.ts",
9 "scripts": {
10 "clean": "rimraf index.* bootstrap.* constants.* definitions.* guards.* lib commands",
11 "lint": "tslint --config tslint.js --project tsconfig.json",
12 "build": "npm run clean && tsc",
13 "watch": "tsc -w --preserveWatchOutput",
14 "test": "jest",
15 "prepublishOnly": "npm run build",
16 "precommit": "lint-staged"
17 },
18 "lint-staged": {
19 "linters": {
20 "*.{ts,tsx}": "npm run lint"
21 },
22 "ignore": [
23 "**/__tests__/*.{ts,tsx}"
24 ]
25 },
26 "keywords": [
27 "ionic",
28 "cordova",
29 "ionic framework",
30 "ionicframework",
31 "ionic cordova",
32 "mobile",
33 "backend",
34 "app",
35 "hybrid",
36 "cordova",
37 "native",
38 "phonegap"
39 ],
40 "repository": {
41 "type": "git",
42 "url": "https://github.com/ionic-team/ionic-cli.git"
43 },
44 "bugs": {
45 "url": "https://github.com/ionic-team/ionic-cli/issues"
46 },
47 "license": "MIT",
48 "dependencies": {
49 "@ionic/cli-framework": "1.0.7",
50 "@ionic/discover": "1.0.4",
51 "@ionic/utils-fs": "0.0.1",
52 "@ionic/utils-network": "0.0.1",
53 "chalk": "^2.3.0",
54 "debug": "^3.1.0",
55 "diff": "^3.4.0",
56 "elementtree": "^0.1.7",
57 "leek": "0.0.24",
58 "lodash": "^4.17.5",
59 "opn": "^5.2.0",
60 "os-name": "^2.0.1",
61 "semver": "^5.5.0",
62 "split2": "^2.2.0",
63 "ssh-config": "^1.1.1",
64 "superagent": "^3.8.2",
65 "superagent-proxy": "^1.0.3",
66 "tar": "^4.3.0",
67 "through2": "^2.0.3",
68 "tslib": "^1.9.0",
69 "uuid": "^3.2.1"
70 },
71 "devDependencies": {
72 "@types/clean-css": "^3.4.30",
73 "@types/debug": "0.0.30",
74 "@types/diff": "^3.2.2",
75 "@types/elementtree": "^0.1.0",
76 "@types/lodash": "^4.14.104",
77 "@types/node": "^6.0.101",
78 "@types/opn": "^5.1.0",
79 "@types/os-name": "^2.0.0",
80 "@types/semver": "^5.4.0",
81 "@types/split2": "^2.1.6",
82 "@types/tar": "^4.0.0",
83 "@types/through2": "^2.0.33",
84 "@types/uuid": "^3.4.3",
85 "jest": "^23.0.1",
86 "jest-cli": "^23.0.1",
87 "lint-staged": "^7.2.0",
88 "rimraf": "^2.6.2",
89 "source-map": "^0.7.0",
90 "ts-jest": "^23.0.0",
91 "tslint": "^5.9.1",
92 "typescript": "~3.0.1"
93 },
94 "jest": {
95 "transform": {
96 "^.+\\.tsx?$": "ts-jest"
97 },
98 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
99 "moduleFileExtensions": [
100 "ts",
101 "tsx",
102 "js",
103 "jsx",
104 "json",
105 "node"
106 ]
107 }
108}