This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
forked from atom/symbols-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.99 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
{
"name": "symbols-view",
"version": "0.114.0",
"main": "./lib/index",
"description": "Jump to a function/method in the current editor with `cmd-r`.",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
"symbols-view:toggle-project-symbols"
],
"atom-text-editor": [
"symbols-view:go-to-declaration",
"symbols-view:return-from-declaration",
"symbols-view:toggle-file-symbols"
]
},
"scripts": {
"test": "atom --test test",
"lint": "eslint --max-warnings 0 test lib"
},
"engines": {
"atom": ">=1.13.0"
},
"atomTestRunner": "./test/runner",
"atomTranspilers": [
{
"glob": "{lib,test}/**/*.js",
"transpiler": "atom-babel6-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc",
"assert-async-plugin.js",
"assert-messages-plugin.js"
]
}
}
],
"dependencies": {
"async": "^0.2.6",
"atom-babel6-transpiler": "0.0.3",
"atom-select-list": "^0.0.7",
"babel-core": "^6.21.0",
"babel-generator": "^6.21.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-react": "^6.16.0",
"ctags": "^3.0.0",
"fs-plus": "^2.9.3",
"fuzzaldrin": "^2.1.0",
"humanize-plus": "^1.8.2",
"semver": "^5.3.0",
"temp": "^0.8.3",
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"atom-mocha-test-runner": "^0.3.0",
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.12.2",
"eslint-config-fbjs": "^2.0.0-alpha.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.7.1",
"test-until": "^1.0.2",
"sinon": "^2.0.0-pre.4"
},
"repository": "https://github.com/atom/symbols-view",
"consumedServices": {
"symbols.provider": {
"versions": {
"0.0.1": "consumeProviders"
}
}
},
"configSchema": {
"useEditorGrammarAsCtagsLanguage": {
"default": true,
"type": "boolean",
"description": "Force ctags to use the name of the current file's language in Atom when generating tags. By default, ctags automatically selects the language of a source file, ignoring those files whose language cannot be determined. This option forces the specified language to be used instead of automatically selecting the language based upon its extension."
},
"quickJumpToFileSymbol": {
"default": true,
"type": "boolean",
"description": "Automatically visit selected file-symbols"
}
}
}