-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.55 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
{
"name": "installed-check-core",
"version": "8.3.1",
"description": "Checks that all dependencies in your package.json have supported versions installed",
"homepage": "http://github.com/voxpelli/node-installed-check-core",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-installed-check-core.git"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map",
"lib/*.js",
"lib/*.d.ts",
"lib/*.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint -i @voxpelli/semver-set",
"check:knip": "knip",
"check:lint": "eslint",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"check": "run-s clean && run-p check:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s clean check test:*"
},
"keywords": [],
"author": "Pelle Wessman <[email protected]> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"dependencies": {
"@voxpelli/semver-set": "^6.0.0",
"@voxpelli/typed-utils": "^1.10.2",
"is-glob": "^4.0.3",
"list-installed": "^5.3.1",
"picomatch": "^4.0.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^7.1.8",
"@types/is-glob": "^4.0.4",
"@types/mocha": "^10.0.8",
"@types/node": "^18.19.50",
"@types/picomatch": "^3.0.1",
"@types/semver": "^7.5.8",
"@voxpelli/eslint-config": "^21.0.0",
"@voxpelli/tsconfig": "^14.0.0",
"c8": "^10.1.2",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"desm": "^1.3.1",
"eslint": "^9.10.0",
"expect-type": "^0.20.0",
"husky": "^9.1.6",
"installed-check": "^9.3.0",
"knip": "^5.30.2",
"mocha": "^10.7.3",
"npm-run-all2": "^6.2.2",
"read-pkg": "^9.0.1",
"tempy": "^3.1.0",
"type-coverage": "^2.29.1",
"typescript": "~5.5.4",
"validate-conventional-commit": "^1.0.4"
}
}