UNPKG

2.31 kBJSONView Raw
1{
2 "name": "npm-check",
3 "version": "6.0.1",
4 "description": "Check for outdated, incorrect, and unused dependencies.",
5 "main": "lib",
6 "engines": {
7 "node": ">=10.9.0"
8 },
9 "types": "./index.d.ts",
10 "typings": "./index.d.ts",
11 "scripts": {
12 "lint": "xo ./lib/*.js",
13 "test": "npm run lint && ./bin/cli.js || echo Exit Status: $?.",
14 "transpile": "babel lib --out-dir lib-es5",
15 "watch": "babel lib --out-dir lib-es5 --watch",
16 "prepublish": "npm run transpile"
17 },
18 "xo": {
19 "space": 4,
20 "rules": {
21 "no-warning-comments": [
22 0
23 ],
24 "global-require": [
25 0
26 ]
27 }
28 },
29 "bin": {
30 "npm-check": "bin/cli.js"
31 },
32 "repository": {
33 "type": "git",
34 "url": "https://github.com/dylang/npm-check.git"
35 },
36 "keywords": [
37 "npm",
38 "outdated",
39 "dependencies",
40 "unused",
41 "changelog",
42 "check",
43 "updates",
44 "api",
45 "interactive",
46 "cli",
47 "safe",
48 "updating",
49 "updater",
50 "installer",
51 "devDependencies"
52 ],
53 "author": {
54 "name": "Dylan Greene",
55 "email": "dylang@gmail.com"
56 },
57 "license": "MIT",
58 "bugs": {
59 "url": "https://github.com/dylang/npm-check/issues"
60 },
61 "homepage": "https://github.com/dylang/npm-check",
62 "files": [
63 "bin",
64 "lib",
65 "lib-es5"
66 ],
67 "dependencies": {
68 "callsite-record": "^4.1.3",
69 "chalk": "^4.1.0",
70 "co": "^4.6.0",
71 "depcheck": "^1.3.1",
72 "execa": "^5.0.0",
73 "giturl": "^1.0.0",
74 "global-modules": "^2.0.0",
75 "globby": "^11.0.2",
76 "inquirer": "^7.3.3",
77 "is-ci": "^2.0.0",
78 "lodash": "^4.17.20",
79 "meow": "^9.0.0",
80 "minimatch": "^3.0.2",
81 "node-emoji": "^1.10.0",
82 "ora": "^5.3.0",
83 "package-json": "^6.5.0",
84 "path-exists": "^4.0.0",
85 "pkg-dir": "^5.0.0",
86 "preferred-pm": "^3.0.3",
87 "rc-config-loader": "^4.0.0",
88 "semver": "^7.3.4",
89 "semver-diff": "^3.1.1",
90 "strip-ansi": "^6.0.0",
91 "text-table": "^0.2.0",
92 "throat": "^6.0.1",
93 "update-notifier": "^5.1.0",
94 "xtend": "^4.0.2"
95 },
96 "devDependencies": {
97 "babel-runtime": "^6.6.1",
98 "babel-cli": "^6.26.0",
99 "babel-plugin-transform-object-rest-spread": "^6.26.0",
100 "babel-plugin-transform-runtime": "^6.23.0",
101 "babel-preset-es2015": "^6.24.1",
102 "xo": "^0.37.1"
103 }
104}