-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "ruby-test",
"author": "Moxley Stratton",
"homepage": "https://github.com/moxley/atom-ruby-test",
"bugs": "https://github.com/moxley/atom-ruby-test/issues",
"main": "./lib/ruby-test",
"version": "1.0.2",
"description": "Run Ruby tests, Rspec examples, and Cucumber features from Atom",
"activationCommands": {
"atom-workspace": [
"ruby-test:toggle",
"ruby-test:test-file",
"ruby-test:test-single",
"ruby-test:test-previous",
"ruby-test:test-all"
]
},
"repository": "https://github.com/moxley/atom-ruby-test",
"license": "MIT",
"engines": {
"atom": ">=1.2.0 <2.0.0"
},
"dependencies": {
"ansi-to-html": "^0.2",
"atom-space-pen-views": "^2.0.3",
"atom-package-deps": "^4.3"
},
"package-deps": [
"terminus"
],
"keywords": [
"ruby",
"test",
"rspec",
"spec",
"cucumber"
],
"consumedServices": {
"terminusTerminal": {
"versions": {
"1.1.x": "consumeRunInTerminal"
}
}
}
}