forked from atom-community/atom-script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.41 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.41 KB
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
{
"name": "script",
"main": "./lib/script",
"version": "2.19.0",
"private": false,
"description": "Run code in Atom!",
"author": "Kyle Kelley <rgbkrk@gmail.com>",
"contributors": [
"Kyle Kelley <rgbkrk@gmail.com>",
"Erran Carey <me@errancarey.com>",
"Lance Batson <lancebatsondev@gmail.com>",
"Pedro Rodriguez <ski.rodriguez@gmail.com>",
"Ash Wilson <smashwilson@gmail.com>",
"Hans Rødtang <hansrodtang@gmail.com>",
"Ciaran Downey <me@ciarand.me>",
"Hikaru Ojima <hikaru.ojima@mixi.co.jp>",
"Rafael Belvederese <rafael@blvz.im>",
"Ivan Storck <ivanoats@gmail.com>",
"Florian Lefèvre <zedentox@gmail.com>",
"Alexey Slaykovsky <alexey@macbook.dlink>",
"Christian Kjaer Laustsen <christianlaustsen@gmail.com>",
"Otto Robba <OttoRobba@users.noreply.github.com>",
"Will Sahatdjian <ws@kindwave.com>",
"Rnhmjoj <micheleguerinirocco@me.com>",
"Yeonghoon Park <sola92@gmail.com>",
"cormullion <cormullion@mac.com>",
"Dan <daniel.bayley@me.com>",
"Andy Hayden <andyhayden1@gmail.com>",
"jbtule <jay+code@tuley.name>",
"Jake Sankey <jakesankey@icloud.com>",
"bryanweatherly <bryanweatherly@gmail.com>",
"Johan Bruning <johan@taquito.nl>",
"Charley David <calyhre@gmail.com>",
"gerane <gerane@gmail.com>",
"Calvin Bottoms <calvin.bottoms@gmail.com>",
"Marek Piechut <marek.piechut@gmail.com>",
"Rodolfo Carvalho <rhcarvalho@gmail.com>",
"cdingpeng <cdingpeng@glitchsoft.com>",
"elclanrs <cedric.ruiz@spacirdesigns.com>",
"Sergey Koshelev <xih@yandex.ru>",
"Dustin Blackman <dustinblackman@users.noreply.github.com>"
],
"repository": "https://github.com/rgbkrk/atom-script",
"keywords": [
"script",
"runner",
"Bash",
"Behat Feature",
"Coffeescript",
"CoffeeScript (Literate)",
"Cucumber (Gherkin)",
"Elixir",
"Erlang",
"F#",
"Go",
"Groovy",
"Haskell",
"Javascript",
"Julia",
"Lua",
"newLISP",
"Perl",
"PHP",
"PowerShell",
"Python",
"RSpec",
"Ruby",
"Ruby on Rails",
"Scala",
"Swift",
"run",
"Applescript",
"code"
],
"license": "Apache 2",
"engines": {
"atom": ">=0.174.0"
},
"dependencies": {
"ansi-to-html": ">0.1.0",
"node-uuid": "~1.4.0",
"strip-ansi": "^2.0.1",
"underscore": "~1.5.2",
"atom-space-pen-views": "^2.0.3"
},
"devDependencies": {
"grunt": "~0.4.5"
}
}