forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) Β· 1.38 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
{
"name": "@yarnpkg/pnpify",
"version": "2.3.3",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"bin": "./sources/boot-cli-dev.js",
"types": "./sources/index.ts",
"sideEffects": false,
"dependencies": {
"@yarnpkg/core": "workspace:^2.3.1",
"@yarnpkg/fslib": "workspace:^2.3.0",
"@yarnpkg/parsers": "workspace:^2.3.0",
"chalk": "^3.0.0",
"clipanion": "^2.6.2",
"comment-json": "^2.2.0",
"lodash": "^4.17.15",
"tslib": "^1.13.0"
},
"devDependencies": {
"@types/comment-json": "^1.1.1",
"@types/lodash": "^4.14.136",
"@yarnpkg/monorepo": "workspace:0.0.0",
"@yarnpkg/pnp": "workspace:^2.3.1",
"eslint": "^6.8.0",
"typescript": "4.1.0-beta"
},
"peerDependencies": {
"eslint": "*",
"typescript": "*"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"typescript": {
"optional": true
}
},
"scripts": {
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\"",
"release": "yarn npm publish",
"test": "run test:unit packages/yarnpkg-pnpify"
},
"publishConfig": {
"main": "./lib/index.js",
"bin": "./lib/cli.js",
"types": "./lib/index.d.ts"
},
"files": [
"/lib/**/*",
"/bin.js"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git"
},
"engines": {
"node": ">=10.19.0"
}
}