-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 724 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "yarn-plugin-engines",
"main": "./src/index.ts",
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@types/node": "^20.12.5",
"@types/semver": "^7.5.8",
"@types/tape": "^4.13.2",
"@yarnpkg/builder": "^4.0.0",
"@yarnpkg/core": "^4.0.3",
"@yarnpkg/fslib": "^3.0.2",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"tape": "^5.7.5",
"ts-node": "^10.9.2",
"typescript": "~5.4.4"
},
"scripts": {
"format": "prettier --write '{src,test}/**/*.ts'",
"format:check": "prettier --check '{src,test}/**/*.ts'",
"build": "builder build plugin && yarn plugin import ./bundles/@yarnpkg/plugin-engines.js",
"test": "tape -r ts-node/register test/test.ts"
}
}