UNPKG

1.73 kBJSONView Raw
1{
2 "name": "dependency-check",
3 "version": "4.1.0",
4 "description": "checks which modules you have used in your code and then makes sure they are listed as dependencies in your package.json",
5 "main": "index.js",
6 "bin": {
7 "dependency-check": "cli.js"
8 },
9 "scripts": {
10 "check:dependencies": "node cli.js . --no-dev",
11 "check:node-versions": "installed-check --engine-check --no-version-check",
12 "check": "run-p check:*",
13 "lint": "standard",
14 "test-cli:custom-detective": "node cli.js test/ -e js:detective-cjs",
15 "test-cli:glob": "node cli.js 'test/**/*.js' --no-default-entries",
16 "test-cli:main-as-file": "node cli.js test/index.js",
17 "test-cli:simple": "node cli.js test/",
18 "test-cli": "run-p test-cli:*",
19 "test": "run-s lint test-cli check"
20 },
21 "husky": {
22 "hooks": {
23 "pre-push": "npm test"
24 }
25 },
26 "engines": {
27 "node": ">=10.0.0"
28 },
29 "author": "max ogden",
30 "dependencies": {
31 "debug": "^4.0.0",
32 "detective": "^5.0.2",
33 "globby": "^10.0.1",
34 "is-relative": "^1.0.0",
35 "micromatch": "^4.0.2",
36 "minimist": "^1.2.0",
37 "pkg-up": "^3.1.0",
38 "read-package-json": "^2.0.10",
39 "resolve": "^1.1.7"
40 },
41 "devDependencies": {
42 "detective-cjs": "^3.0.0",
43 "husky": "^3.0.0",
44 "installed-check": "^2.2.0",
45 "npm-run-all": "^4.1.5",
46 "standard": "^13.1.0"
47 },
48 "directories": {
49 "test": "test"
50 },
51 "repository": {
52 "type": "git",
53 "url": "git+https://github.com/dependency-check-team/dependency-check.git"
54 },
55 "bugs": {
56 "url": "https://github.com/dependency-check-team/dependency-check/issues"
57 },
58 "homepage": "https://github.com/dependency-check-team/dependency-check",
59 "license": "BSD-3-Clause"
60}