-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
80 lines (80 loc) · 2.33 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
{
"name": "yarn-deduplicate",
"version": "6.0.2",
"bin": "./dist/cli.js",
"description": "Deduplication tool for yarn.lock files",
"keywords": [
"yarn",
"yarn.lock",
"lockfile",
"duplicated",
"package manager",
"dedupe",
"deduplicate"
],
"scripts": {
"clean": "yarn tsc --build --clean",
"test": "yarn build && jest",
"lint": "eslint .",
"typecheck": "yarn tsc --build tsconfig.json --force && yarn tsc --build tests/tsconfig.json --force",
"validate": "yarn test && yarn lint && yarn typecheck",
"prepack": "yarn build",
"build": "yarn clean && yarn tsc --build",
"release": "release-it"
},
"homepage": "https://github.com/scinos/yarn-deduplicate#readme",
"bugs": "https://github.com/scinos/yarn-deduplicate/issues",
"license": "Apache-2.0",
"author": "Sergio Cinos <sergio.cinos@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"AUTHORS.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE.txt",
"README.md",
"dist/*",
"!dist/tsconfig.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "git@github.com:scinos/yarn-deduplicate.git"
},
"engines": {
"node": ">=v14",
"yarn": ">=1 <2"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"commander": "^10.0.1",
"semver": "^7.5.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@release-it/keep-a-changelog": "^3.1.0",
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^29.5.1",
"@types/semver": "^7.5.0",
"@types/yarnpkg__lockfile": "^1.1.5",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"outdent": "^0.8.0",
"prettier": "^2.8.8",
"release-it": "^15.10.3",
"typescript": "^5.0.4"
},
"jest": {
"testMatch": [
"<rootDir>/tests/*.ts"
]
},
"packageManager": "yarn@3.5.1"
}