This repository has been archived by the owner on Mar 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
123 lines (123 loc) · 2.94 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
{
"name": "terminus",
"title": "Terminus",
"main": "./lib/terminus",
"version": "4.1.8",
"description": "A terminal for Atom, complete with themes, API and more. Now written in JavaScript! A fork of platformio-atom-ide-terminal.",
"author": "bus-stop and contributors",
"license": "MIT",
"homepage": "https://atom.io/packages/terminus",
"repository": "https://github.com/bus-stop/terminus",
"bugs": {
"url": "https://github.com/bus-stop/terminus/issues/new/choose"
},
"contributors": [
{
"name": "bus-stop",
"email": "no@contact.io",
"url": "https://bus-stop.github.io/"
},
{
"name": "Jeremy Ebneyamin",
"email": "ebneyaminj@gmail.com",
"url": "https://github.com/jeremyramin"
},
{
"name": "Ivan Kravets",
"email": "me@ikravets.com",
"url": "http://platformio.org"
},
{
"name": "Dmytro Kyrychuk",
"email": "dmytro.kyrychuck@gmail.com",
"url": "http://platformio.org"
},
{
"name": "The Community Contributors",
"url": "https://github.com/bus-stop/terminus/graphs/contributors"
}
],
"engines": {
"atom": ">=1.41.0 <2.0.0"
},
"keywords": [
"terminus",
"platformio-ide-terminal",
"terminal-plus",
"terminal",
"pty",
"tty",
"panel",
"prompt",
"term",
"xterm",
"iterm",
"iterm2",
"console",
"powershell"
],
"providedServices": {
"terminusTerminal": {
"description": "Terminus Terminal API",
"versions": {
"1.1.1": "provideTerminus"
}
},
"terminal": {
"description": "Terminal API",
"versions": {
"1.0.0": "provideTerminal"
}
}
},
"scripts": {
"test": "atom --test spec",
"lint": "eslint .",
"fix": "eslint . --fix",
"semantic-release": "semantic-release"
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"node-pty-prebuilt-multiarch": "^0.10.0",
"term.js": "https://github.com/bus-stop/term.js/tarball/master",
"underscore": "^1.13.2"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@semantic-release/apm-config": "^9.0.1",
"atom-jasmine3-test-runner": "^5.2.11",
"eslint": "^8.11.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "7.0.4",
"semantic-release": "^19.0.2"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"atomTestRunner": "./spec/runner.js",
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"release": {
"extends": "@semantic-release/apm-config"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
}
}