-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 873 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 873 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
44
45
46
47
48
49
50
{
"name" : "@capsulescodes/flint",
"description" : "Auto-format utility for local and remote ease of development",
"version" : "0.2.0",
"keywords" : [
"format",
"lint",
"fix",
"local",
"remote",
"git",
"hooks",
"pre-checkout",
"post-checkout",
"pre-commit",
"post-commit",
"pre-pull",
"post-pull",
"pre-push",
"post-push"
],
"homepage" : "https://github.com/capsulescodes/flint",
"repository" : {
"type" : "git",
"url" : "git+https://github.com/capsulescodes/flint.git"
},
"license" : "MIT",
"author" : {
"name" : "Yannick Decat",
"email" : "yannick@capsules.codes",
"url" : "https://capsules.codes/"
},
"files" : [
"!*",
"bin",
"dist",
"hooks",
"src",
"stubs",
"LICENSE.md",
"README.md"
],
"scripts" : {
"test" : "bash tests/runner.sh"
},
"bin" : {
"flint" : "bin/flint"
},
"type" : "module"
}