forked from ranyitz/qnm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.45 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
{
"name": "qnm",
"version": "0.9.0",
"description": "cli utility for querying the node_modules directory",
"bin": "bin/qnm.js",
"repository": "ranyitz/qnm",
"engines": {
"node": ">=8.7"
},
"keywords": [
"query",
"node_modules",
"version",
"cli"
],
"author": "Ran Yitzhaki",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint .",
"install": "tabtab install --auto",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{md,json}": [
"prettier"
]
},
"devDependencies": {
"eslint": "~4.18.2",
"eslint-config-airbnb-base": "~12.1.0",
"eslint-config-prettier": "~2.9.0",
"eslint-plugin-import": "~2.9.0",
"eslint-plugin-jest": "~21.13.0",
"eslint-plugin-prettier": "~2.6.0",
"husky": "~0.14.3",
"jest": "~22.4.2",
"lint-staged": "~7.0.0",
"prettier": "^1.11.1"
},
"dependencies": {
"archy": "~1.0.0",
"chalk": "~2.3.2",
"commander": "~2.15.0",
"figures": "~2.0.0",
"fuzzysort": "~1.1.1",
"js-levenshtein": "~1.1.3",
"lodash": "~4.17.5",
"log-update": "~2.3.0",
"pkg-dir": "~2.0.0",
"tabtab": "~2.2.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.spec.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"watchPathIgnorePatterns": [
"node_modules"
]
}
}