-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 989 Bytes
/
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
{
"name": "import-catalog",
"description": "Easily see an inventory of destructured imports from specific packages in your codebase",
"homepage": "https://github.com/bryantee/import-catalog",
"version": "1.1.2",
"main": "./bin/index.js",
"bin": "./bin/index.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/cli.ts",
"build": "tsc",
"test": "jest",
"package": "pkg . --targets node14-macos-x64 --output import-catalog",
"prepublish": "yarn build && yarn package"
},
"dependencies": {
"commander": "^9.2.0",
"glob": "^8.0.1",
"voici.js": "^1.0.0"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.5.0",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.31",
"jest": "^28.0.3",
"pkg": "^5.6.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"pkg": {
"scripts": "./build/**/*.js",
"outputPath": "./dist"
}
}