-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.26 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.26 KB
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
{
"name": "babel-polyfills",
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn build-es-shims-data && yarn build-corejs3-shipped-proposals && gulp build",
"build-corejs3-shipped-proposals": "node ./scripts/build-corejs3-shipped-proposals.mjs",
"build-es-shims-data": "node ./scripts/download-compat-table.js && node ./scripts/build-es-shims-data",
"clean": "rimraf packages/*/lib",
"clean-all": "yarn clean && rimraf packages/*/node_modules node_modules",
"lint": "eslint packages '*.{js,ts}' --ext .js,.ts --format=codeframe",
"publish": "yarn clean && NODE_ENV=production yarn build && yarn validate && lerna publish from-git",
"test": "jest && yarn test:esm",
"test:esm": "node test/esm/index.mjs",
"tscheck": "yarn tsc",
"validate": "yarn lint && yarn tscheck && yarn test",
"version": "yarn lerna version",
"watch": "gulp watch"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@babel/eslint-parser": "^7.28.6",
"@babel/eslint-plugin-development": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.28.6",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/babel__traverse": "^7.28.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"babel-jest": "^29.7.0",
"electron-to-chromium": "^1.5.278",
"eslint": "^8.57.1",
"eslint-formatter-codeframe": "^7.32.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"jest": "^30.2.0",
"jest-light-runner": "^0.7.11",
"lerna": "^3.22.1",
"lodash": "^4.17.23",
"prettier": "^3.8.1",
"rimraf": "^2.7.1",
"rollup": "^4.59.0",
"typescript": "^5.9.3"
},
"resolutions": {
"@lerna/npm-publish": "patch:@lerna/npm-publish@npm:3.18.5#.yarn-patches/@lerna/npm-publish.patch",
"@lerna/package": "patch:@lerna/package@npm:3.16.0#.yarn-patches/@lerna/package.patch",
"@lerna/package-graph": "patch:@lerna/package-graph@npm:3.18.5#.yarn-patches/@lerna/package-graph.patch",
"@lerna/pack-directory": "patch:@lerna/pack-directory@npm:3.16.4#.yarn-patches/@lerna/pack-directory.patch",
"@babel/preset-env/core-js-compat": "^3.48.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0",
"yarn": ">=1.0.0"
},
"workspaces": [
"packages/*",
"test/esm"
],
"jest": {
"runner": "jest-light-runner",
"testRegex": "./packages/[^/]+/test/.+\\.m?js$",
"testPathIgnorePatterns": [
"/node_modules/",
"/test/fixtures/",
"/test/spawn-fixtures/",
"/test/helpers/"
],
"testEnvironment": "node",
"transformIgnorePatterns": [
"/node_modules/",
"/test/fixtures/",
"<rootDir>/packages/[^/]+/lib/"
],
"modulePathIgnorePatterns": [
"/test/fixtures/"
],
"moduleNameMapper": {
"^@babel/helper-define-polyfill-provider$": "<rootDir>/packages/babel-helper-define-polyfill-provider/"
}
},
"version": "0.0.0",
"packageManager": "yarn@4.12.0"
}