-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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": "npm-fzf",
"version": "0.0.0-semantically-released",
"description": "Fuzzy search npm package with fzf",
"main": "./bin/cli.js",
"bin": {
"npf": "./bin/cli.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "npm-run-all jest eslint --parallel --silent",
"jest": "jest --forceExit --detectOpenHandles",
"eslint": "eslint . --ignore-path .gitignore --cache --cache-location \"./eslint/.eslintcache\" ",
"eslint:makeHtml": "npm run eslint -- --format html -o ./eslint/report.html",
"eslint:open": "npm run eslint:makeHtml --silent && opn ./eslint/report.html",
"watch": "nodemon --exec npm run test",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hankchanocd/npm-fzf.git"
},
"keywords": [
"npf",
"npm",
"fzf",
"search"
],
"files": [
"src/",
"bin/",
"README.md"
],
"author": "Hank Chan <hankchan@cubesole.ai> (https://github.com/hankchanocd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hankchanocd/npm-fzf/issues"
},
"homepage": "https://github.com/hankchanocd/npm-fzf#readme",
"dependencies": {
"@hankchanocd/npmlist": "^8.0.2",
"command-exists": "^1.2.8",
"es6-promisify": "^6.0.2",
"node-fzf": "^0.2.1"
},
"devDependencies": {
"commitizen": "^3.1.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-promise": "^4.2.1",
"ghooks": "^2.0.4",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"opn-cli": "^4.1.0",
"semantic-release": "^15.14.0"
},
"config": {
"ghooks": {
"pre-push": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}