forked from ionic-team/ionic-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ionic",
"version": "4.2.1",
"description": "A tool for creating and developing Ionic Framework mobile apps.",
"homepage": "https://ionicframework.com",
"author": "Ionic Team <[email protected]> (https://ionicframework.com) ",
"bin": {
"ionic": "./bin/ionic"
},
"engines": {
"node": ">=6.4.0"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"clean": "rimraf index.* bootstrap.* constants.* definitions.* guards.* lib commands",
"lint": "tslint --config tslint.js --project tsconfig.json",
"build": "npm run clean && tsc",
"watch": "tsc -w --preserveWatchOutput",
"test": "jest",
"prepublishOnly": "npm run build",
"cli-scripts:pre-commit": "lint-staged"
},
"lint-staged": {
"linters": {
"*.{ts,tsx}": "npm run lint"
},
"ignore": [
"**/__tests__/*.{ts,tsx}"
]
},
"keywords": [
"ionic",
"ionic framework",
"ionicframework",
"mobile",
"app",
"hybrid",
"cordova",
"native",
"phonegap"
],
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/ionic-cli.git"
},
"bugs": {
"url": "https://github.com/ionic-team/ionic-cli/issues"
},
"license": "MIT",
"dependencies": {
"@ionic/cli-framework": "1.1.1",
"@ionic/discover": "1.0.6",
"@ionic/utils-fs": "0.0.3",
"@ionic/utils-network": "0.0.3",
"chalk": "^2.3.0",
"debug": "^4.0.0",
"diff": "^3.4.0",
"elementtree": "^0.1.7",
"leek": "0.0.24",
"lodash": "^4.17.5",
"opn": "^5.2.0",
"os-name": "^2.0.1",
"semver": "^5.5.0",
"split2": "^2.2.0",
"ssh-config": "^1.1.1",
"superagent": "^3.8.2",
"superagent-proxy": "^2.0.0",
"tar": "^4.3.0",
"through2": "^2.0.3",
"tslib": "^1.9.0",
"update-notifier": "^2.3.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/clean-css": "^3.4.30",
"@types/debug": "0.0.31",
"@types/diff": "^3.2.2",
"@types/elementtree": "^0.1.0",
"@types/lodash": "^4.14.104",
"@types/node": "^6.0.101",
"@types/opn": "^5.1.0",
"@types/os-name": "^2.0.0",
"@types/semver": "^5.4.0",
"@types/split2": "^2.1.6",
"@types/tar": "^4.0.0",
"@types/through2": "^2.0.33",
"@types/update-notifier": "^2.0.0",
"@types/uuid": "^3.4.3",
"jest": "^23.0.1",
"jest-cli": "^23.0.1",
"lint-staged": "^7.2.0",
"rimraf": "^2.6.2",
"source-map": "^0.7.0",
"ts-jest": "~23.1.0",
"tslint": "^5.9.1",
"typescript": "~3.1.1"
}
}