-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
57
58
59
60
61
62
63
{
"name": "autodot",
"description": "A minimal dotfile manager for those magical entities.",
"version": "0.1.8",
"author": "Mohammed Ajmal Siddiqui @ajmalsiddiqui",
"bin": {
"autodot": "./bin/run"
},
"bugs": "https://github.com/ajmalsiddiqui/autodot/issues",
"dependencies": {
"@oclif/command": "^1.4.13",
"@oclif/config": "^1.6.3",
"@oclif/plugin-help": "^1.2.4",
"cli-ux": "^4.3.1",
"nodegit": "^0.22.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.13.0",
"@oclif/tslint": "^1.1.0",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.4",
"@types/nodegit": "^0.18.7",
"globby": "^8.0.1",
"ts-node": "^5.0.1",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/ajmalsiddiqui/autodot",
"keywords": [
"oclif",
"autodot",
"dotfiles"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "autodot",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "ajmalsiddiqui/autodot",
"scripts": {
"postpack": "rm -f .oclif.manifest.json",
"posttest": "tsc -p . --noEmit && tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md",
"lint": "tslint --fix 'src/**/*{.ts,.tsx}'"
},
"types": "lib/index.d.ts"
}