forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.6 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "github",
"main": "./lib/index",
"version": "0.0.0",
"description": "GitHub integration",
"repository": "https://github.com/atom/github",
"license": "MIT",
"scripts": {
"test": "atom --test test",
"lint": "eslint --max-warnings 0 test lib",
"fetch-schema": "node script/fetch-schema"
},
"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",
"graphql/schema.graphql",
"graphql/relay-babel-plugin.js"
]
}
}
],
"dependencies": {
"atom-babel6-transpiler": "0.0.3",
"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",
"babel-relay-plugin": "^0.10.0",
"classnames": "^2.2.5",
"compare-sets": "^1.0.1",
"core-decorators": "^0.15.0",
"diff": "2.2.2",
"etch": "0.8.0",
"fs-extra": "^1.0.0",
"git-kitchen-sink": "1.17.0",
"graphql": "^0.8.2",
"hoist-non-react-statics": "^1.2.0",
"keytar": "^3.0.2",
"lodash.memoize": "^4.1.2",
"moment": "^2.17.1",
"multi-list-selection": "^0.1.1",
"ncp": "^2.0.0",
"node-fetch": "^1.6.3",
"nsfw": "1.0.15",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-relay": "^0.10.0",
"recursive-readdir": "^2.0.0",
"semver": "^5.3.0",
"tree-kill": "^1.1.0",
"what-the-diff": "^0.3.0",
"yubikiri": "0.0.2"
},
"devDependencies": {
"atom-mocha-test-runner": "^1.0.0",
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"dedent-js": "^1.0.1",
"electron-devtools-installer": "^2.0.1",
"enzyme": "^2.7.1",
"eslint": "^3.0.0",
"eslint-config-fbjs": "2.0.0-alpha.1",
"eslint-config-standard": "^5.2.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^1.3.2",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"mocha-appveyor-reporter": "^0.3.0",
"react-addons-test-utils": "^15.4.1",
"simulant": "^0.2.2",
"sinon": "2.0.0-pre.4",
"temp": "^0.8.3",
"test-until": "^1.1.1"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"configSchema": {
"keyboardNavigationDelay": {
"type": "number",
"default": 300,
"description": "How long to wait before showing a diff view after navigating to an entry with the keyboard"
},
"gitDiagnostics": {
"type": "boolean",
"default": false,
"description": "Write detailed diagnostic information about git operations to the console"
}
},
"deserializers": {
"GitTimingsView": "createGitTimingsView",
"IssueishPaneItem": "createIssueishPaneItem"
}
}