forked from ionic-team/ionic-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.3 KB
/
package.json
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
{
"name": "ionic",
"version": "1.6.4",
"preferGlobal": true,
"description": "A tool for creating and developing Ionic Framework mobile apps.",
"homepage": "http://ionicframework.com/",
"bin": {
"ionic": "bin/ionic"
},
"scripts": {
"bump": "node lib/tasks/bumpversion",
"beta-bump": "node lib/tasks/bumpversion --level pre --identifier beta",
"publish-release": "node lib/tasks/bumpversion --npmPublish",
"publish-tag": "node lib/tasks/bumpversion --level beta --npmPublishTag",
"full-release": "node lib/tasks/bumpversion --npmInstall --git --npmPublish",
"test": "npm run jasmine",
"e2e": "jasmine-node --captureExceptions ./e2e",
"jasmine": "jasmine-node --captureExceptions ./spec"
},
"keywords": [
"ionic",
"ionic framework",
"ionicframework",
"mobile",
"app",
"hybrid",
"cordova",
"phonegap"
],
"repository": {
"type": "git",
"url": "https://github.com/driftyco/ionic-cli.git"
},
"contributors": [
{
"name": "Max Lynch",
"email": "[email protected]",
"web": "https://twitter.com/maxlynch"
},
{
"name": "Peter Collins",
"email": "[email protected]",
"web": "https://twitter.com/SomethingNew2_0"
},
{
"name": "Adam Bradley",
"web": "https://twitter.com/adamdbradley"
},
{
"name": "Josh Bavari",
"web": "https://twitter.com/jbavari",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"cheerio": "^0.19.0",
"cli-table": "^0.3.1",
"colors": "0.6.2",
"connect": "3.1.1",
"connect-livereload": "0.5.2",
"crc": "3.2.1",
"cross-spawn": "0.2.3",
"event-stream": "3.0.x",
"finalhandler": "0.2.0",
"form-data": "0.1.4",
"gulp": "3.8.8",
"ionic-app-lib": "0.3.8",
"ncp": "0.4.2",
"npm": "2.1.3",
"opbeat-ionic": "^1.1.3",
"open": "0.0.5",
"optimist": "0.6.0",
"progress": "1.1.7",
"prompt": "0.2.12",
"proxy-middleware": "^0.7.0",
"q": "1.0.1",
"request": "2.51.0",
"semver": "^4.2.0",
"serve-static": "1.7.1",
"shelljs": "0.2.6",
"tiny-lr-fork": "0.0.5",
"underscore": "~1.7.0",
"unzip": "0.1.9",
"vinyl-fs": "0.3.7",
"xml2js": "0.4.4"
},
"devDependencies": {
"jasmine-node": "^1.14.5"
}
}