-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.16 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
{
"type": "module",
"name": "@mischnic/yarn-browser",
"version": "0.0.4",
"license": "MIT",
"scripts": {
"build": "yarn build:lib --no-cache && yarn build:standalone --no-cache",
"build:lib": "parcel build src/index.js --target module --no-source-maps --no-minify",
"build:diag": "BUNDLE_BUDDY=1 parcel build src/index.js --target module",
"build:standalone": "parcel build src/standalone.js --target standalone --no-source-maps --no-minify",
"test:node": "node test-node.js",
"test:memfs": "node test-memfs.js",
"prepare": "patch-package"
},
"module": "dist/yarn-browser.es.js",
"standalone": "dist/yarn-browser-standalone.es.js",
"targets": {
"module": {
"includeNodeModules": {
"@msgpack/msgpack": false,
"assert": false,
"zlib": false,
"buffer": false,
"js-yaml": false,
"pako": false,
"stream": false,
"readable-stream": false,
"semver": false
}
},
"standalone": {
"outputFormat": "esmodule"
}
},
"alias": {
"clipanion": "./polyfills/clipanion.js",
"crypto": "./polyfills/crypto.js",
"fs": "./src/fs.cjs",
"got": "./polyfills/got.js",
"url": "./polyfills/url.js",
"v8": "./polyfills/v8.js",
"@arcanis/slice-ansi": false,
"ci-info": false,
"elliptic": false,
"enquirer": false
},
"files": [
"dist/yarn-browser-standalone.es.js",
"dist/yarn-browser.es.js"
],
"publishConfig": {
"access": "public"
},
"browserslist": "Chrome 75",
"dependencies": {
"@msgpack/msgpack": "^2.3.0",
"assert": "^2.0.0",
"buffer": "^5.5.0",
"js-yaml": "^3.13.1",
"pako": "~1.0.5",
"readable-stream": "^3.6.0",
"semver": "^7.3.4"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@yarnpkg/core": "2.4.0",
"@yarnpkg/plugin-git": "2.3.0",
"@yarnpkg/plugin-github": "2.1.2",
"@yarnpkg/plugin-node-modules": "2.3.0",
"@yarnpkg/plugin-npm": "2.4.0",
"@yarnpkg/plugin-pack": "2.2.3",
"@yarnpkg/plugin-pnp": "2.4.0",
"memfs": "^3.2.2",
"parcel": "2.0.0-nightly.481",
"patch-package": "^6.4.7"
},
"resolutions": {
"semver": "7.3.4"
}
}