-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
100 lines (100 loc) · 5.13 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
98
99
100
{
"version": "3.39.0",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"license": "MIT",
"author": {
"name": "Denis Pushkarev",
"email": "[email protected]",
"url": "http://zloirock.ru"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"zxi": "zx scripts/zxi.mjs",
"prepare": "npm run zxi scripts/prepare.mjs",
"build-compat": "npm run zxi scripts/build-compat/index.mjs",
"bundle": "run-s bundle-package bundle-tests",
"bundle-package": "npm run zxi time scripts/bundle-package/bundle-package.mjs",
"bundle-tests": "npm run zxi time cd scripts/bundle-tests/bundle-tests.mjs",
"check": "run-s check-v8-protectors check-unused-modules check-mapping check-dependencies",
"check-dependencies": "npm run zxi time scripts/check-dependencies/check-dependencies.mjs",
"check-mapping": "npm run zxi time scripts/check-compat-data-mapping.mjs",
"check-unused-modules": "npm run zxi scripts/check-unused-modules.mjs",
"check-v8-protectors": "node --trace-protector-invalidation packages/core-js",
"codespell": "npm run zxi time tests/codespell/runner.mjs",
"compat-bun": "bun tests/compat/bun-runner.js",
"compat-deno": "deno run --allow-read tests/compat/deno-runner.mjs",
"compat-hermes": "npm run zxi tests/compat/hermes-adapter.mjs",
"compat-node": "node tests/compat/node-runner",
"compat-rhino": "npm run zxi tests/compat/rhino-adapter.mjs 1.7.15",
"lint": "run-s prepare lint-raw",
"lint-raw": "run-s test-eslint test-type-definitions bundle-package test-publint",
"test": "run-s prepare test-raw",
"test-raw": "run-s lint-raw bundle-tests test-unit test-promises test-observables test-entries test-compat-data test-compat-tools test-builder check",
"test-eslint": "npm run zxi time tests/eslint/runner.mjs",
"test-publint": "npm run zxi time tests/publint/runner.mjs",
"test-unit": "run-s test-unit-karma test-unit-node test-unit-bun",
"test-unit-karma": "npm run zxi time cd tests/unit-karma/runner.mjs",
"test-unit-node": "npm run zxi time tests/unit-node/runner.mjs",
"test-unit-bun": "npm run zxi time cd tests/unit-bun/runner.mjs",
"test-promises": "npm run zxi time cd tests/promises/runner.mjs",
"test-observables": "npm run zxi time cd tests/observables/runner.mjs",
"test-entries": "npm run zxi tests/entries/index.mjs",
"test-builder": "npm run zxi tests/builder/builder.mjs",
"test-compat-data": "npm run zxi tests/compat-data/index.mjs",
"test-compat-tools": "npm run zxi tests/compat-tools/index.mjs",
"test-type-definitions": "npm run zxi time cd tests/type-definitions/runner.mjs",
"test262": "npm run zxi time cd tests/test262/runner.mjs",
"refresh": "node scripts/clean-dependencies.mjs && npm install && npm run test-raw",
"downloads": "npm run zxi scripts/downloads-by-versions.mjs",
"usage": "npm run zxi scripts/usage/usage.mjs",
"update-version": "npm run zxi scripts/update-version.mjs",
"publish": "npm publish --workspaces",
"c": "npm run check",
"r": "npm run refresh",
"u": "npm run update-version"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-block-scoped-functions": "^7.25.9",
"@babel/plugin-transform-block-scoping": "^7.25.9",
"@babel/plugin-transform-classes": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.26.0",
"@babel/plugin-transform-computed-properties": "^7.25.9",
"@babel/plugin-transform-destructuring": "^7.25.9",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-exponentiation-operator": "^7.25.9",
"@babel/plugin-transform-for-of": "^7.25.9",
"@babel/plugin-transform-literals": "^7.25.9",
"@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
"@babel/plugin-transform-member-expression-literals": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-new-target": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/plugin-transform-object-super": "^7.25.9",
"@babel/plugin-transform-optional-catch-binding": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/plugin-transform-property-literals": "^7.25.9",
"@babel/plugin-transform-regexp-modifiers": "^7.26.0",
"@babel/plugin-transform-reserved-words": "^7.25.9",
"@babel/plugin-transform-shorthand-properties": "^7.25.9",
"@babel/plugin-transform-spread": "^7.25.9",
"@babel/plugin-transform-template-literals": "^7.25.9",
"@babel/plugin-transform-unicode-regex": "^7.25.9",
"konan": "^2.1.1",
"npm-run-all2": "^7.0.1",
"semver": "^7.6.3",
"zx": "^8.2.0"
}
}