-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "dotfiles-sync",
"version": "0.0.6",
"description":
"CLI tool to sync your dotfiles based on https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/",
"main": "bin/index.js",
"files": ["bin", "lib"],
"bin": {
"dotfiles": "./bin/index.js"
},
"keywords": [
"dotfiles",
"git",
"github",
"sync",
"git-bare",
"home",
"config",
"cli",
"system tools",
"filesystem"
],
"author": "Marcos Mellado <marcos@mellados.com> (https://mellados.com)",
"homepage": "https://github.com/mmellado/dotfiles-sync",
"repository": {
"type": "git",
"url": "git://github.com/mmellado/dotfiles-sync.git"
},
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"colors": "^1.2.1",
"fs-extra": "^5.0.0",
"is-git-url": "^1.0.0",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0"
},
"scripts": {
"dot-test": "node bin/index.js"
}
}