UNPKG

3 kBJSONView Raw
1{
2 "name": "@hankchanocd/npmlist",
3 "version": "7.0.3",
4 "description": "A fuzzy CLI that lists everything listable from any npm package",
5 "main": "./build/index.js",
6 "bin": {
7 "npmlist": "./bin/cli.js",
8 "npl": "./bin/cli.js"
9 },
10 "engines": {
11 "node": ">=8"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/hankchanocd/npmlist.git"
16 },
17 "scripts": {
18 "pretest": "npm run build --silent",
19 "test:unit": "npm run jest -- __test__/unit_test",
20 "test": "npm-run-all jest eslint --parallel --silent",
21 "test:watch": "npm run jest:watch",
22 "jest": "jest --forceExit --detectOpenHandles",
23 "jest:watch": "npm run jest -- --watch",
24 "jest:coverage": "npm run jest -- --coverage",
25 "coverage:check": "npm run jest:coverage",
26 "coverage:open": "npm run coverage:check && opn ./coverage/index.html",
27 "watch": "nodemon --exec npm-run-all build test:unit",
28 "eslint": "eslint . --ignore-path .gitignore --cache --cache-location \"./eslint/.eslintcache\" ",
29 "eslint:makeHtml": "npm run eslint -- --format html -o ./eslint/report.html",
30 "eslint:open": "npm run eslint:makeHtml --silent && opn ./eslint/report.html",
31 "flow": "flow",
32 "prebuild": "rimraf ./build",
33 "build": "babel src/ -d build/ --quiet",
34 "build:watch": "nodemon --exec npm run build",
35 "commit": "git-cz",
36 "semantic-release": "semantic-release"
37 },
38 "keywords": [
39 "npm",
40 "cli",
41 "list",
42 "latest",
43 "dependencies"
44 ],
45 "files": [
46 "build/",
47 "bin/",
48 "README.md"
49 ],
50 "jest": {
51 "collectCoverage": true,
52 "coverageReporters": [
53 "html"
54 ]
55 },
56 "author": "Hank Chan <hankchanth@icloud.com> (https://github.com/hankchanocd)",
57 "license": "ISC",
58 "bugs": {
59 "url": "https://github.com/hankchanocd/npmlist/issues"
60 },
61 "homepage": "https://github.com/hankchanocd/npmlist#readme",
62 "dependencies": {
63 "chalk": "^2.4.1",
64 "child_process": "^1.0.2",
65 "cli-columns": "^3.1.2",
66 "cliui": "^4.1.0",
67 "columnify": "^1.5.4",
68 "commander": "^2.19.0",
69 "ipt": "^2.1.0",
70 "ls": "^0.2.1",
71 "pkginfo": "^0.4.1"
72 },
73 "devDependencies": {
74 "babel-cli": "^6.26.0",
75 "babel-plugin-transform-async-to-generator": "^6.24.1",
76 "babel-preset-env": "^1.7.0",
77 "babel-preset-flow": "^6.23.0",
78 "commitizen": "^3.0.4",
79 "cz-conventional-changelog": "^2.1.0",
80 "eslint": "^5.8.0",
81 "eslint-plugin-import": "^2.14.0",
82 "eslint-plugin-jest": "^21.26.2",
83 "eslint-plugin-promise": "^4.0.1",
84 "flow-bin": "^0.84.0",
85 "ghooks": "^2.0.4",
86 "jest": "^23.6.0",
87 "nodemon": "^1.18.5",
88 "npm-run-all": "^4.1.3",
89 "opn-cli": "^3.1.0",
90 "rimraf": "^2.6.2",
91 "semantic-release": "^15.10.6"
92 },
93 "config": {
94 "ghooks": {
95 "pre-commit": "npm run test:unit",
96 "pre-push": "npm run coverage:check # Include Jest's coverage report"
97 },
98 "commitizen": {
99 "path": "node_modules/cz-conventional-changelog"
100 }
101 }
102}