-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "check-package-dependencies",
"version": "7.2.0",
"description": "Check package dependencies for duplicates, peer dependencies satisfaction and more early",
"keywords": [
"package.json"
],
"author": "Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)",
"license": "ISC",
"repository": "https://github.com/christophehurpeau/check-package-dependencies.git",
"homepage": "https://github.com/christophehurpeau/check-package-dependencies",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
},
"sideEffects": false,
"bin": "./bin/check-package-dependencies.mjs",
"main": "./dist/index-node18.mjs",
"types": "./dist/definitions/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/definitions/index.d.ts",
"node": {
"import": "./dist/index-node18.mjs"
}
}
},
"files": [
"src",
"dist",
"bin"
],
"scripts": {
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
"build:definitions": "tsc -p tsconfig.json",
"checks": "node scripts/check-package.js",
"clean": "yarn clean:build",
"clean:build": "pob-esbuild-clean-out dist",
"generate:api": "typedoc --tsconfig tsconfig.doc.json",
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production BABEL_ENV=test jest --coverage --coverageReporters=pob-lcov-reporter --coverageDirectory=docs/coverage/",
"lint": "yarn run lint:prettier && tsc && yarn run lint:eslint",
"lint:eslint": "eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet *.{js,cjs,mjs} src bin scripts",
"lint:prettier": "pob-root-prettier --check .",
"lint:prettier:fix": "pob-root-prettier --write .",
"postinstallDev": "pob-root-postinstall",
"test": "vitest",
"test:coverage": "POB_VITEST_COVERAGE=json,text vitest run --coverage",
"test:coverage:json": "POB_VITEST_COVERAGE=json vitest run --coverage",
"test:coverage:lcov": "POB_VITEST_COVERAGE=lcovvitest run --coverage",
"test:watch": "vitest --watch",
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
},
"commitlint": {
"extends": [
"@pob/commitlint-config"
]
},
"pob": {
"bundler": "rollup-esbuild",
"entries": [
"index"
],
"envs": [
{
"target": "node",
"version": "18"
}
],
"typescript": true
},
"prettier": "@pob/root/prettier-config",
"dependencies": {
"chalk": "^5.2.0",
"glob": "^10.0.0",
"import-meta-resolve": "^4.0.0",
"semver": "^7.5.4",
"semver-utils": "^1.1.4",
"type-fest": "^4.0.0"
},
"devDependencies": {
"@pob/commitlint-config": "6.4.0",
"@pob/eslint-config": "56.0.0",
"@pob/eslint-config-typescript": "56.0.0",
"@pob/rollup-esbuild": "3.0.0",
"@pob/root": "12.1.1",
"@types/semver": "7.5.8",
"@types/semver-utils": "1.1.3",
"@vitest/coverage-v8": "1.5.2",
"eslint": "8.57.0",
"semver": "7.5.4",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"vitest": "1.5.2"
}
}