-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
87 lines (87 loc) · 2.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "qnm",
"version": "2.10.3",
"description": "cli utility for querying the node_modules directory",
"bin": "bin/qnm.js",
"repository": "ranyitz/qnm",
"engines": {
"node": ">=12"
},
"files": [
"dist/**",
"bin"
],
"author": "Ran Yitzhaki",
"license": "MIT",
"keywords": [
"query",
"node_modules",
"version",
"cli"
],
"scripts": {
"test": "jest",
"lint": "eslint . && prettier --check .",
"format": "eslint . --fix && prettier --write .",
"watch": "yarn pkg --watch",
"pkg": "ncc build src/cli.ts -o dist",
"build": "yarn pkg",
"test:watch": "jest --watch",
"version": "auto-changelog -p && git add CHANGELOG.md",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@types/archy": "^0.0.31",
"@types/get-folder-size": "2",
"@types/jest": "^27.4.1",
"@types/js-levenshtein": "^1.1.0",
"@types/lodash": "^4.14.148",
"@types/node": "^14.14.14",
"@types/prompts": "^2.0.3",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.33.1",
"@yarnpkg/parsers": "^3.0.0-rc.3",
"ansi": "^0.3.1",
"archy": "^1.0.0",
"auto-changelog": "^2.3.0",
"chalk": "^4.1.0",
"commander": "8",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"execa": "^5.1.1",
"figures": "^3.1.0",
"fuzzysort": "^1.1.1",
"get-folder-size": "2",
"globby": "^11.0.1",
"husky": "^6.0.0",
"jest": "^28.0.3",
"js-levenshtein": "^1.1.3",
"lint-staged": "^10.5.3",
"lodash": "^4.17.5",
"log-update": "^4.0.0",
"open": "^7.0.0",
"ora": "^6.0.1",
"pinst": "^2",
"pkg-dir": "^5.0.0",
"prettier": "^2.2.1",
"prompts": "^2.3.0",
"replaceall": "^0.1.6",
"semver": "^7.3.5",
"strip-ansi": "^7.0.1",
"terminal-link": "^2.1.1",
"timeago.js": "^4.0.2",
"ts-jest": "^28.0.0-next.3",
"type-fest": "^0.20.2",
"typescript": "^4.1.3"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,json,md}": "prettier --write"
}
}