-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.18 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
{
"name": "reason-refmt",
"main": "./lib/main",
"version": "0.3.3",
"description": "(Re)format Reason code with refmt",
"keywords": [
"reason",
"ocaml",
"format",
"refmt"
],
"activationHooks": [
"language-ocaml:grammar-used",
"language-ocaml-fix:grammar-used",
"language-reason:grammar-used",
"nuclide-language-reason:grammar-used"
],
"repository": "https://github.com/reasonml-editor/atom-reason-refmt",
"license": "MIT",
"engines": {
"atom": ">=1.4.0 <2.0.0"
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"configSchema": {
"refmtPath": {
"title": "Path to refmt",
"type": "string",
"default": "refmt"
},
"formatOnSave": {
"type": "boolean",
"default": true
},
"useLinter": {
"type": "boolean",
"default": true
}
},
"dependencies": {
"diff": "^3.2.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}