-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
157 lines (157 loc) · 4.55 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "atom-ide-console",
"main": "dist/main.js",
"version": "0.0.2",
"author": "Amin Yahyaabadi",
"description": "Aggregate and display output from various sources and provide an user interface for REPL-like functionality.",
"keywords": [],
"repository": "https://github.com/atom-ide-community/atom-ide-console",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "atom --test spec",
"clean": "shx rm -rf dist",
"babel": "npm run clean && shx cp -r src dist && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=false babel dist --out-dir dist",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w",
"bundle": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c ",
"build": "npm run babel",
"build-commit": "build-commit -o dist",
"bump": "ncu -u",
"prepare": "npm run babel"
},
"atomTestRunner": "./spec/runner",
"activationHooks": [
"core:loaded-shell-environment"
],
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"classnames": "2.2.5",
"atom-package-deps": "^6.0.0",
"immutable": "4.0.0-rc.9",
"log4js": "1.1.1",
"nullthrows": "1.0.0",
"@atom-ide-community/nuclide-commons": "^0.8.2",
"@atom-ide-community/nuclide-commons-atom": "^0.8.2",
"@atom-ide-community/nuclide-commons-ui": "^0.8.2",
"react": "16.6.0",
"react-dom": "16.6.0",
"react-virtualized": "9.20.1",
"redux": "3.6.0",
"rxjs-compat": "6.3.3",
"shallowequal": "1.1.0"
},
"devDependencies": {
"@types/atom": "1.40.11",
"@types/node": "^16.0.0",
"typescript": "^4.0.0",
"tslib": "^2.0.1",
"coffeescript": "^2.5.1",
"@types/jasmine": "^3.5.12",
"atom-jasmine3-test-runner": "^5.0.5",
"prettier": "^2.0.5",
"eslint": "7.32.0",
"eslint-config-atomic": "^1.4.0",
"rollup": "^2.26.4",
"rollup-plugin-atomic": "^3.0.0",
"shx": "^0.3.2",
"cross-env": "^7.0.2",
"@babel/cli": "7.15.7",
"@babel/core": "7.15.8",
"babel-preset-atomic": "^4.0.0",
"npm-check-updates": "11.8.5",
"build-commit": "0.1.4"
},
"package-deps": [],
"deserializers": {
"nuclide.ConsoleContainer": "deserializeConsole",
"nuclide.Console": "deserializeConsole"
},
"atomConfig": {
"maximumMessageCount": {
"title": "Maximum Message Count",
"description": "The number of messages to retain in the console",
"type": "number",
"default": 10000,
"minimum": 1
},
"maximumSerializedMessages": {
"title": "Maximum Serialized Messages",
"description": "The number of messages to save across Nuclide sessions",
"type": "number",
"default": 10,
"minimum": 1
},
"maximumSerializedHistory": {
"title": "Maximum Serialized History",
"description": "The number of input history lines to save across sessions",
"type": "number",
"default": 20,
"minimum": 1
},
"diffUrlPattern": {
"title": "Diff URL Pattern",
"description": "The URL to link D1234567 text to. (%s will be replaced with the match.)",
"type": "string",
"default": ""
},
"taskUrlPattern": {
"title": "Task URL Pattern",
"description": "The URL to link T1234567 text to. (%s will be replaced with the match.)",
"type": "string",
"default": ""
},
"fontScale": {
"title": "Font Scale",
"description": "The scale of the font used in the console relative to the editor font size.",
"type": "number",
"default": 0.9,
"minimum": 0.1
}
},
"activationCommands": {},
"consumedServices": {
"tool-bar": {
"versions": {
"^1.0.0": "consumeToolBar"
}
},
"nuclide-paste": {
"versions": {
"0.0.0": "consumePasteProvider"
}
},
"autocomplete.watchEditor": {
"versions": {
"1.0.0": "consumeWatchEditor"
}
}
},
"providedServices": {
"console": {
"versions": {
"0.1.0": "provideConsole"
}
},
"DEPRECATED-nuclide-output": {
"versions": {
"0.0.0": "provideOutputService"
}
},
"DEPRECATED-nuclide.registerExecutor": {
"description": "Register an object that can execute code.",
"versions": {
"0.0.0": "provideRegisterExecutor"
}
},
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
}
}
}