-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
96 lines (96 loc) · 2.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
{
"name": "x-terminal",
"title": "X-Terminal",
"main": "./src/x-terminal",
"module": "./src/x-terminal",
"bugs": {
"url": "https://github.com/bus-stop/x-terminal/issues/new/choose"
},
"version": "14.0.6",
"description": "An xterm based Atom plugin for providing terminals inside your Atom workspace. A fork of atom-xterm",
"keywords": [
"terminal",
"xterm",
"term",
"console",
"shell",
"emulator",
"pty",
"tty",
"comspec",
"command-line",
"bash",
"sh",
"powershell",
"cmd"
],
"activationHooks": [
"core:loaded-shell-environment"
],
"atomTestRunner": "./spec/custom-runner",
"repository": "https://github.com/bus-stop/x-terminal",
"license": "MIT",
"engines": {
"atom": ">=1.41.0 <2.0.0"
},
"providedServices": {
"atom-xterm": {
"description": "An x-terminal service for providing terminals inside your Atom workspace.",
"versions": {
"2.0.0": "provideAtomXtermService"
}
},
"platformioIDETerminal": {
"description": "Run commands and open terminals.",
"versions": {
"1.1.0": "providePlatformIOIDEService"
}
},
"terminal": {
"description": "Run commands and open terminals.",
"versions": {
"1.0.0": "provideTerminalService"
}
}
},
"dependencies": {
"deep-object-diff": "^1.1.9",
"fs-extra": "^11.1.0",
"marked": "^4.2.5",
"node-pty-prebuilt-multiarch": "^0.10.0",
"uuid": "^9.0.0",
"whatwg-url": "^12.0.0",
"which": "^3.0.0",
"xterm": "5.1.0",
"xterm-addon-fit": "0.7.0",
"xterm-addon-ligatures": "0.6.0",
"xterm-addon-web-links": "0.8.0",
"xterm-addon-webgl": "0.14.0"
},
"devDependencies": {
"@semantic-release/apm-config": "^9.0.1",
"atom-jasmine3-test-runner": "^5.2.13",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"postcss-less": "^6.0.0",
"semantic-release": "^20.1.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"temp": "^0.9.4"
},
"scripts": {
"eslint": "eslint . --ext .json,.js",
"stylelint": "stylelint styles/*.less",
"lint": "npm run eslint && npm run stylelint",
"lintfix": "npm run eslint -- --fix && npm run stylelint -- --fix",
"atom-test": "atom --test spec",
"test": "npm run atom-test && npm run lint"
},
"deserializers": {
"XTerminalModel": "deserializeXTerminalModel"
}
}