-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·56 lines (56 loc) · 1.26 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": "mtsl",
"version": "0.0.13",
"description": "Replaces npm link with something that actually works!",
"scripts": {
"pretty": "prettier --config ./.prettierrc.json --write \"src/**/*.js\""
},
"bin": {
"mtsl": "./bin/cli.js"
},
"author": "nomi9995 <muhammadnuman70@gmail.com> (http://www.github.com/nomi9995)",
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nomi9995/mtsl.git"
},
"bugs": {
"url": "https://github.com/nomi9995/mtsl/issues"
},
"homepage": "https://github.com/nomi9995/mtsl#readme",
"dependencies": {
"chokidar": "^3.4.0",
"colors": "^1.4.0",
"columnify": "^1.5.4",
"commander": "^5.1.0",
"esm": "^3.2.25",
"fs-extra": "^9.0.1",
"inquirer": "^7.2.0",
"is-there": "^4.5.0",
"prettier": "^2.0.5",
"untildify": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^4.18.2",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty && git add ."
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"symlink",
"symboliclink",
"symlinks",
"copy",
"watcher",
"tangible",
"tangible symlink"
]
}