-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.88 KB
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
{
"name": "defrag",
"version": "1.1.0",
"description": "defragment dependencies in your monorepo",
"keywords": [
"defrag",
"dependencies",
"deps",
"fix",
"defragmentation"
],
"repository": {
"type": "https",
"url": "https://github.com/NullVoxPopuli/defrag"
},
"license": "MIT",
"author": "NullVoxPopuli",
"type": "module",
"exports": {
"import": "./src/index.js"
},
"bin": {
"defrag": "./bin.js",
"defrag-dependencies": "./bin.js"
},
"files": [
"index.js",
"src/**",
"bin.js"
],
"scripts": {
"build": "tsc --build",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"lint:types": "tsc --noEmit",
"test": "vitest --coverage --no-watch",
"test:watch": "vitest --watch"
},
"dependencies": {
"@manypkg/get-packages": "^2.2.0",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.4",
"ember-apply": "^2.11.1",
"latest-version": "^7.0.0",
"minimatch": "^9.0.3",
"semver": "^7.5.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/debug": "^4.1.12",
"@types/semver": "^7.5.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.6",
"c8": "^8.0.1",
"eslint": "^8.54.0",
"eslint-plugin-decorator-position": "^5.0.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"release-plan": "^0.6.0",
"typescript": "5.3.3",
"vite": "^5.0.0",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "18.19.0"
},
"preset": "index.js"
}