forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) Β· 2.78 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
{
"name": "@yarnpkg/monorepo",
"private": true,
"license": "BSD-2-Clause",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@arcanis/sherlock": "^2.0.2",
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-dynamic-import": "^7.10.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@babel/register": "^7.13.16",
"@types/emscripten": "^1.38.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.7.0",
"@yarnpkg/cli": "workspace:*",
"@yarnpkg/core": "workspace:*",
"@yarnpkg/eslint-config": "workspace:*",
"@yarnpkg/sdks": "workspace:*",
"babel-jest": "^26.0.1",
"clipanion": "^3.0.1",
"eslint": "^6.8.0",
"github-api": "^3.2.2",
"jest": "^26.0.1",
"jest-environment-node": "^26.0.1",
"jest-junit": "^10.0.0",
"micromatch": "^4.0.2",
"tslib": "^1.13.0",
"typescript": "^4.3.2"
},
"resolutions": {
"yoga-layout-prebuilt": "patch:[email protected]#./.yarn/patches/yoga-layout-prebuilt.patch"
},
"dependenciesMeta": {
"core-js": {
"built": false
},
"core-js-pure": {
"built": false
},
"date-fns": {
"built": false
},
"fsevents": {
"built": false
},
"gatsby": {
"built": false
},
"gatsby-cli": {
"built": false
},
"gatsby-telemetry": {
"built": false
},
"svg2png": {
"unplugged": true
},
"webpack-cli": {
"built": false
}
},
"scripts": {
"build:plugin-commands": "node ./scripts/gen-plugin-commands.js > packages/yarnpkg-cli/sources/pluginCommands.ts",
"build:compile": "rm -rf \"$0\"/lib && mkdir -p \"$0\"/lib && rsync -a --include '*.d.ts' --exclude '*.ts' --exclude '*.tsx' \"$0\"/sources/ \"$0\"/lib/ && node scripts/compile \"$@\"",
"build:compile-inline": "find \"$0\"/sources -name '*.js' && babel \"$0\"/sources --out-dir \"$0\"/sources --extensions .ts,.tsx",
"test:lint": "eslint --max-warnings 0 \"packages/**/@(sources|tests)/**/!(libzip).@(tsx|ts|js)\"",
"test:unit": "jest",
"typecheck:all": "tsc --noEmit"
},
"sherlock": {
"requireList": [
"scripts/actions/sherlock-prepare.js"
]
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "."
},
"engines": {
"node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
}
}