-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
110 lines (110 loc) · 2.6 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
{
"name": "narrow",
"main": "./lib/main",
"version": "0.65.2",
"description": "narrow something",
"keywords": [
"unite.vim",
"emacs-helm",
"ag",
"rg",
"grep",
"ripgrep",
"helm-swoop"
],
"repository": "https://github.com/t9md/atom-narrow",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
"narrow:activate-package"
],
"atom-text-editor": [
"narrow:atom-scan",
"narrow:atom-scan-by-current-word",
"narrow:fold",
"narrow:fold-by-current-word",
"narrow:git-diff-all",
"narrow:project-symbols",
"narrow:project-symbols-by-current-word",
"narrow:scan",
"narrow:scan-by-current-word",
"narrow:search",
"narrow:search-by-current-word",
"narrow:search-by-current-word-without-focus",
"narrow:search-current-project",
"narrow:search-current-project-by-current-word",
"narrow:symbols",
"narrow:symbols-by-current-word",
"narrow:toggle-search-start-by-double-click"
],
"atom-text-editor.vim-mode-plus-search": [
"vim-mode-plus-user:narrow:scan",
"vim-mode-plus-user:narrow:search",
"vim-mode-plus-user:narrow:atom-scan",
"vim-mode-plus-user:narrow:search-current-project"
]
},
"engines": {
"atom": "^1.19.0-beta0"
},
"consumedServices": {
"vim-mode-plus": {
"versions": {
"^0.1.0": "consumeVim"
}
},
"inline-git-diff": {
"versions": {
"^1.0.0": "consumeInlineGitDiff"
}
}
},
"providedServices": {
"narrow": {
"description": "narrow",
"versions": {
"2.0.0": "provideNarrow"
}
}
},
"dependencies": {
"atom-outlet": "^0.13.1",
"atom-package-deps": "^4.6.1",
"fs-plus": "^3.0.2",
"grim": "^2.0.2",
"semver": "^5.4.1",
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"atom-mocha-test-runner": "^1.2.0",
"chai": "^4.1.2",
"fs-extra": "^5.0.0",
"prettier": "^1.10.2",
"sinon": "^4.4.2",
"standard": "^10.0.3"
},
"package-deps": [
"inline-git-diff"
],
"atomTestRunner": "./test/runner",
"scripts": {
"watch": "fswatch -0 test lib | xargs -0 -n1 -I{} atom -t test",
"prettier": "prettier --write --no-semi --print-width=120 --no-bracket-spacing --trailing-comma=es5 'lib/**/*.js' 'spec/*.js'",
"lint": "standard lib/*.js lib/**/*.js test/*.js"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"mocha": true,
"node": true
},
"globals": [
"atom",
"assert"
],
"ignore": [
"test/fixtures/*"
]
}
}