forked from ranyitz/qnm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.02 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
88
{
"name": "qnm",
"version": "1.2.0",
"description": "cli utility for querying the node_modules directory",
"bin": "bin/qnm.js",
"repository": "ranyitz/qnm",
"engines": {
"node": ">=8.7"
},
"author": "Ran Yitzhaki",
"license": "MIT",
"keywords": [
"query",
"node_modules",
"version",
"cli"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "tsc",
"watch": "tsc --watch",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@types/archy": "^0.0.31",
"@types/jest": "^24.0.23",
"@types/js-levenshtein": "^1.1.0",
"@types/lodash": "^4.14.148",
"@types/node": "^12.12.8",
"@types/prompts": "^2.0.3",
"@types/tabtab": "^3.0.0",
"@types/update-notifier": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-yoshi-base": "^4.4.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^24.9.0",
"lint-staged": "^7.1.2",
"prettier": "^1.11.1",
"ts-jest": "^24.1.0",
"type-fest": "^0.8.1",
"typescript": "^3.7.2"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"archy": "^1.0.0",
"chalk": "^2.4.1",
"commander": "^4.0.1",
"figures": "^3.1.0",
"fuzzysort": "^1.1.1",
"globby": "^10.0.1",
"js-levenshtein": "^1.1.3",
"lodash": "^4.17.5",
"log-update": "^3.3.0",
"open": "^7.0.0",
"pkg-dir": "^4.2.0",
"prompts": "^2.3.0",
"tabtab": "2",
"update-notifier": "^3.0.1"
},
"files": [
"bin",
"src",
"build",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md"
],
"lint-staged": {
"*.js": [
"eslint"
],
"*.{md,json}": [
"prettier"
]
}
}