forked from babel/babel-polyfills
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.37 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
95
96
97
{
"name": "babel-polyfills",
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn build-es-shims-data && yarn build-corejs3-shipped-proposals && gulp build && gulp bundle",
"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 packages/*/esm",
"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.22.6",
"@babel/core": "^7.22.6",
"@babel/eslint-parser": "^7.22.6",
"@babel/eslint-plugin-development": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/babel__traverse": "^7.14.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-jest": "^29.0.3",
"chalk": "^3.0.0",
"electron-to-chromium": "^1.4.528",
"eslint": "^8.12.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.3",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-newer": "^1.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"jest": "^27.0.0",
"lerna": "^3.20.2",
"lodash": "^4.17.15",
"prettier": "^3.2.4",
"rimraf": "^2.6.3",
"rollup": "^2.42.3",
"through2": "^2.0.0",
"typescript": "^5.3.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.39.0"
},
"engines": {
"node": ">= 6.9.0",
"yarn": ">=1.0.0"
},
"workspaces": [
"packages/*",
"test/esm"
],
"jest": {
"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@3.6.1"
}