This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathpackage.json
116 lines (116 loc) · 2.67 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
111
112
113
114
115
116
{
"name": "git-plus",
"main": "./lib/git-plus",
"version": "8.7.1",
"description": "Do git things without the terminal",
"keywords": [
"git"
],
"providedServices": {
"git-plus": {
"description": "Execute git commands",
"versions": {
"1.0.0": "provideService"
}
}
},
"scripts": {
"test": "eslint --fix \"lib/**/*.js\" \"spec/**/*.js\" && apm test",
"debug": "atom-transpiler-debug-tool"
},
"deserializers": {
"git-plus/output-view": "deserializeOutputView"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"autosave": {
"versions": {
"1.0.0": "consumeAutosave"
}
},
"tree-view": {
"versions": {
"1.0.0": "consumeTreeView"
}
}
},
"repository": "https://github.com/akonwi/git-plus",
"license": "MIT",
"engines": {
"atom": ">= 1.28"
},
"prettier": {
"printWidth": 100
},
"atomTranspilers": [
{
"glob": "{lib,spec}/**/*.js",
"transpiler": "atom-babel6-transpiler",
"options": {
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread",
[
"transform-class-properties",
{
"spec": true
}
]
],
"babelrc": false
}
}
},
{
"transpiler": "atom-ts-transpiler",
"glob": "{!(node_modules)/**/,}*.ts?(x)",
"options": {
"compilerOptions": {},
"cacheKeyFiles": [],
"verbose": false
}
}
],
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.51",
"@types/atom": "^1.31.0",
"@types/react": "^16.7.13",
"ansi-to-html": "^0.4.1",
"atom-babel6-transpiler": "^1.2.0",
"atom-notify": "^1.1.0",
"atom-select-list": "^0.7.1",
"atom-space-pen-views": "^2.0.3",
"atom-ts-transpiler": "^1.5.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.6",
"fs-plus": "^2.2.0",
"fuzzaldrin": "^1.2.0",
"linkify-urls": "^2.0.0",
"node-emoji": "^1.8.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"typescript": "^3.2.2",
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"atom-transpiler-debug-tool": "^1.0.5",
"babel-eslint": "^8.2.5",
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0",
"lint": "^1.1.2",
"prettier": "^1.13.6",
"quibble": "^0.3.0",
"tslint": "^5.11.0"
}
}