-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "atom-ionicenvironments",
"main": "./lib/ionicenvironments",
"version": "0.1.14",
"description": "Change the environment currently being used to render the Ionic/Cordova app.",
"keywords": [],
"repository": "https://github.com/MattCMcNabb/atom-ionic-environments.git",
"license": "MIT",
"engines": {
"atom": "*"
},
"dependencies": {
"atom-select-list": "^0.3.2",
"fs": "0.0.1-security",
"node-cmd": "^3.0.0",
"path": "^0.12.7",
"ps-node": "^0.1.6"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"standard": {
"globals": [
"atom",
"beforeEach",
"describe",
"expect",
"it",
"jasmine",
"spyOn"
]
},
"configSchema": {
"currentEnvironment": {
"title": "Currently Selected Environment",
"type": "string",
"default": "Debug",
"order": 1,
"enum": [
"Debug",
"Release"
]
},
"serveOptions": {
"type": "object",
"properties": {
"Debug": {
"title": "Additional options to run with ionic serve when debugging",
"description": "Example: --lab, --platform android, --no-open, See: [ionic serve](https://ionicframework.com/docs/cli/serve/)",
"type": "string",
"default": "",
"order": 2
},
"Release": {
"title": "Additional options to run with ionic serve when releasing",
"description": "Example: --env=prod, See: [ionic serve](https://ionicframework.com/docs/cli/serve/)",
"type": "string",
"default": "--env=prod",
"order": 3
}
}
}
}
}