forked from zloirock/core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 6.07 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "3.15.1",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-optional-catch-binding": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-arrow-functions": "^7.14.5",
"@babel/plugin-transform-block-scoped-functions": "^7.14.5",
"@babel/plugin-transform-block-scoping": "^7.14.5",
"@babel/plugin-transform-classes": "^7.14.5",
"@babel/plugin-transform-computed-properties": "^7.14.5",
"@babel/plugin-transform-destructuring": "^7.14.7",
"@babel/plugin-transform-exponentiation-operator": "^7.14.5",
"@babel/plugin-transform-literals": "^7.14.5",
"@babel/plugin-transform-member-expression-literals": "^7.14.5",
"@babel/plugin-transform-parameters": "^7.14.5",
"@babel/plugin-transform-property-literals": "^7.14.5",
"@babel/plugin-transform-shorthand-properties": "^7.14.5",
"@babel/plugin-transform-spread": "^7.14.6",
"@babel/plugin-transform-template-literals": "^7.14.5",
"babel-loader": "^8.2.2",
"babel-plugin-transform-es2015-modules-simple-commonjs": "~0.3.0",
"babel-plugin-transform-for-of-as-array": "^1.1.1",
"chalk": "^4.1.1",
"confusing-browser-globals": "^1.0.10",
"core-js": "file:./packages/core-js",
"core-js-builder": "file:./packages/core-js-builder",
"core-js-compat": "file:./packages/core-js-compat",
"core-js-pure": "file:./packages/core-js-pure",
"david": "^12.0.0",
"detective": "^5.2.0",
"electron-to-chromium": "^1.3.758",
"es-observable": "git+https://github.com/tc39/proposal-observable.git#d3404f06bc70c7c578a5047dfb3dc813730e3319",
"eslint": "^7.29.0",
"eslint-plugin-es": "git+https://github.com/mysticatea/eslint-plugin-es.git#00d73851793541dc7b0d07292deb0ca2bc8a25e1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsonc": "^1.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-qunit": "^6.1.1",
"eslint-plugin-regexp": "~0.12.1",
"eslint-plugin-sonarjs": "~0.8.0-125",
"eslint-plugin-unicorn": "^33.0.1",
"glob": "^7.1.7",
"jsonc-eslint-parser": "^1.0.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-phantomjs-launcher": "~1.0.4",
"karma-qunit": "^4.1.2",
"lerna": "^4.0.0",
"moon-unit": "0.2.2",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"phantomjs-prebuilt": "~2.1.16",
"promises-aplus-tests": "^2.1.2",
"puppeteer": ">=9.1.1 <10",
"qunit": "^2.16.0",
"semver": "^7.3.5",
"terser": "^5.7.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"scripts": {
"init": "run-p generate-indexes bootstrap && run-p clean-and-copy build-compat",
"clean-and-copy": "node scripts/clean-and-copy",
"bootstrap": "lerna bootstrap --hoist --no-ci && lerna link",
"build": "run-s init bundle-package",
"build-compat": "run-s build-compat-data build-compat-entries build-compat-modules-by-versions",
"build-compat-data": "node packages/core-js-compat/src/build-data",
"build-compat-entries": "node packages/core-js-compat/src/build-entries",
"build-compat-modules-by-versions": "node packages/core-js-compat/src/build-modules-by-versions",
"bundle": "run-p bundle-package bundle-helpers bundle-tests-global bundle-tests-pure",
"bundle-package": "node scripts/bundle",
"bundle-helpers": "webpack --entry ./tests/helpers/qunit-helpers.js --output-filename qunit-helpers.js",
"bundle-tests-global": "webpack --entry ./tests/tests/index.js --output-filename tests.js",
"bundle-tests-pure": "webpack --entry ./tests/pure/index.js --output-filename pure.js",
"generate-indexes": "node scripts/generate-indexes",
"lint": "run-s init test-lint",
"test-lint": "eslint --ext .js,.json ./",
"test-unit": "run-p test-unit-global test-unit-minified test-unit-pure",
"test-unit-global": "karma start -f=packages/core-js-bundle/index.js,tests/bundles/tests.js",
"test-unit-global-standalone": "run-s init bundle-package bundle-helpers bundle-tests-global test-unit-global",
"test-unit-minified": "karma start -f=packages/core-js-bundle/minified.js,tests/bundles/tests.js",
"test-unit-pure": "karma start -f=tests/bundles/pure.js",
"test-unit-pure-standalone": "run-s init bundle-helpers bundle-tests-pure test-unit-pure",
"test-promises": "promises-aplus-tests tests/promises-aplus/adapter --timeout 1000",
"test-promises-standalone": "run-s init test-promises",
"test-observables": "babel node_modules/es-observable/test/ -d tests/bundles/observables-tests/ && node tests/observables/adapter && node tests/observables/adapter-pure",
"test-observables-standalone": "run-s init test-observables",
"test-entries": "run-p test-entries-basic test-entries-content",
"test-entries-basic": "node tests/commonjs",
"test-entries-content": "node tests/commonjs-entries-content",
"test-entries-standalone": "run-s init test-entries",
"test-targets-parser": "node tests/targets-parser",
"test": "run-s init test-lint bundle test-unit test-promises test-observables test-entries test-targets-parser",
"ci": "run-s init bundle test-unit test-promises test-observables test-entries test-targets-parser",
"clean-dependencies": "node scripts/clean-dependencies",
"refresh": "npm run clean-dependencies && npm i && npm t",
"downloads": "node scripts/downloads-by-versions",
"downloads-main-only": "node scripts/downloads-by-versions --main-only=true",
"usage-100": "node scripts/usage -l=100",
"usage-1000": "node scripts/usage -l=1000",
"usage-10000": "node scripts/usage -l=10000",
"outdated": "node scripts/check-dependencies",
"update-version": "node scripts/update-version",
"publish": "lerna publish from-package --yes"
}
}