-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 843 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 843 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
{
"name": "editorconfig-cli",
"version": "1.0.0",
"description": "initialize .editorconfig in your bash",
"keywords": [
"editorconfig",
"cli",
"terminal",
"bash"
],
"author": "Andrei Volchenko <volchenko.andrei@gmail.com>",
"contributors": [
{
"name": "R1ZZU",
"email": "volchenko.andrei@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/R1ZZU/editorconfig-cli"
},
"bugs": {
"url": "https://github.com/R1ZZU/editorconfig-cli/issues"
},
"license": "MIT",
"bin": {
"ec": "./bin/ec"
},
"dependencies": {
"commander": "^2.8.1",
"editorconfig": "^0.13.0",
"inquirer": "^1.2.3"
},
"scripts": {
"test:init": "node bin/ec init",
"test:init:y": "node bin/ec init -y",
"test:add-rules": "node bin/ec add-rules"
}
}