-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 859 Bytes
/
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
{
"name": "test-utils",
"version": "0.2.1",
"description": "Add, remove, and move .only in tests",
"main": "./lib/test-utils",
"repository": {
"type": "git",
"url": "https://github.com/chrisbreiding/atom-test-utils"
},
"bugs": {
"url": "https://github.com/chrisbreiding/atom-test-utils/issues"
},
"homepage": "https://github.com/chrisbreiding/atom-test-utils",
"activationCommands": {
"atom-workspace": [
"test-utils:add-only",
"test-utils:remove-only",
"test-utils:remove-all-onlys",
"test-utils:move-only",
"test-utils:add-skip",
"test-utils:remove-skip",
"test-utils:remove-all-skips"
]
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"author": "Chris Breiding",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.12.2"
}
}