-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 882 Bytes
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 882 Bytes
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
{
"name": "rempl-host",
"version": "0.3.0",
"description": "Rempl host for Atom Editor",
"main": "lib/index.js",
"repository": "rempl/host-atom",
"engines": {
"atom": ">=1.7.0 <2.0.0"
},
"keywords": [
"atom",
"rempl"
],
"author": {
"name": "Sergey Melyukov",
"email": "s.melukov@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rempl/host-atom/issues"
},
"homepage": "https://github.com/rempl/host-atom",
"scripts": {
"codestyle": "jscs ./lib && eslint -c ./.eslintrc ./lib"
},
"devDependencies": {
"eslint": "^3.11.1",
"jscs": "^3.0.7"
},
"deserializers": {
"ClientDeserializer": "deserializeClient"
},
"dependencies": {
"rempl": "^1.0.0-alpha14"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}