-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
64
65
66
67
68
69
70
71
{
"name": "link-with",
"version": "0.4.0",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"description": "Links the local package and install its dependencies.",
"license": "MIT",
"author": "Tomas Szabo <tomas.szabo@deftomat.com>",
"homepage": "https://github.com/deftomat/link-with",
"main": "./dist/index.js",
"bin": {
"link-with": "./dist/src/cli.js"
},
"engines": {
"node": ">=12.0.0"
},
"os": [
"darwin",
"linux"
],
"scripts": {
"checkup": "opinionated checkup",
"link-with": "node ./dist/src/cli.js",
"prepublishOnly": "rm -rf ./dist && tsc && chmod +x ./dist/src/cli.js",
"watch": "tsc --watch"
},
"files": [
"dist"
],
"keywords": [
"link",
"dependencies",
"sync",
"transitive"
],
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.1.1",
"commander": "^3.0.1",
"configstore": "^5.0.0",
"execa": "^4.0.0",
"find-up": "^4.1.0",
"fs-extra": "^9.0.0",
"inquirer": "^8.0.0",
"inquirer-checkbox-autocomplete-prompt": "^0.2.0",
"inquirer-file-tree-selection-prompt": "^1.0.12",
"ora": "^4.0.4",
"ramda": "^0.27.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@deftomat/opinionated": "0.6.2",
"@types/configstore": "^5.0.1",
"@types/fs-extra": "^9.0.0",
"@types/inquirer": "^8.0.0",
"@types/node": "^12.7.5",
"@types/ramda": "^0.27.4",
"@types/validate-npm-package-name": "^3.0.0",
"husky": "^4.0.1",
"prettier": "2.0.5",
"typescript": "^3.7.4"
},
"typings": "./dist/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "opinionated pre-commit"
}
},
"prettier": "@deftomat/opinionated/configs/prettier.config.js"
}