-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
141 lines (141 loc) · 3.84 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
{
"name": "atom-ide-debugger",
"main": "dist/main.js",
"version": "0.0.3",
"author": "Amin Yahyaabadi",
"description": "Debugger for Atom IDE",
"keywords": [],
"repository": "https://github.com/atom-ide-community/atom-ide-debugger",
"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 build"
},
"atomTestRunner": "./spec/runner",
"activationHooks": [
"core:loaded-shell-environment"
],
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "^6.0.0",
"idx": "1.2.0",
"immutable": "4.0.0-rc.9",
"invariant": "2.2.2",
"@atom-ide-community/nuclide-commons": "^0.8.2",
"@atom-ide-community/nuclide-commons-atom": "^0.8.2",
"@atom-ide-community/nuclide-debugger-common": "^0.8.2",
"@atom-ide-community/nuclide-commons-ui": "^0.8.2",
"nullthrows": "1.0.0",
"react": "16.6.0",
"rxjs-compat": "6.3.3",
"uuid": "3.0.1",
"vscode-debugprotocol": "1.24.0"
},
"devDependencies": {
"@types/atom": "1.40.11",
"@types/node": "^16.0.0",
"typescript": "^4.2.3",
"tslib": "^2.1.0",
"@types/jasmine": "^3.6.7",
"atom-jasmine3-test-runner": "^5.2.2",
"prettier": "^2.2.1",
"eslint": "8.0.1",
"eslint-config-atomic": "^1.12.4",
"rollup": "^2.42.1",
"rollup-plugin-atomic": "^3.0.0",
"shx": "^0.3.3",
"cross-env": "^7.0.3",
"@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": [],
"configSchema": {
"showDebuggerOnBpSet": {
"title": "Show debugger on breakpoint set",
"type": "boolean",
"default": true,
"description": "Shows the debugger, if it is currently hidden, when the user sets a breakpoint in a file via the gutter."
}
},
"providedServices": {
"debugger.remote": {
"versions": {
"description": "Remote control for launching debugger.",
"0.0.0": "provideRemoteControlService"
}
},
"autocomplete.provider": {
"versions": {
"2.0.0": "createAutocompleteProvider"
}
}
},
"consumedServices": {
"DEPRECATED-nuclide.registerExecutor": {
"versions": {
"0.0.0": "consumeRegisterExecutor"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatipService"
}
},
"tool-bar": {
"versions": {
"^1.0.0": "consumeToolBar"
}
},
"nuclide-notifications.provideRaiseNativeNotification": {
"versions": {
"0.0.0": "consumeNotifications"
}
},
"debugger.provider": {
"versions": {
"0.0.0": "consumeDebuggerProvider"
}
},
"debugger.configurator": {
"versions": {
"0.0.0": "consumeDebuggerConfigurationProviders"
}
},
"nuclide-current-working-directory": {
"versions": {
"0.0.0": "consumeCurrentWorkingDirectory"
}
},
"nuclide-terminal": {
"versions": {
"0.0.0": "consumeTerminal"
}
},
"nuclide-rpc-services": {
"versions": {
"0.0.0": "consumeRpcService"
}
},
"console": {
"versions": {
"0.1.0": "consumeConsole"
}
}
}
}