11{
2- "name" : " core-js" ,
3- "description" : " Standard library" ,
4- "version" : " 2.5.1" ,
5- "repository" : {
6- "type" : " git" ,
7- "url" : " https://github.com/zloirock/core-js.git"
8- },
9- "main" : " index.js" ,
102 "devDependencies" : {
11- "LiveScript" : " 1.3.x" ,
12- "es-observable-tests" : " 0.2.x" ,
13- "eslint" : " 4.14.x" ,
14- "eslint-plugin-import" : " 2.8.x" ,
15- "grunt" : " ^1.0.1" ,
16- "grunt-cli" : " ^1.2.0" ,
17- "grunt-contrib-clean" : " ^1.1.0" ,
3+ "@babel/cli" : " ^7.7.7" ,
4+ "@babel/core" : " ^7.7.7" ,
5+ "@babel/plugin-proposal-nullish-coalescing-operator" : " ^7.7.4" ,
6+ "@babel/plugin-proposal-optional-catch-binding" : " ^7.7.4" ,
7+ "@babel/plugin-proposal-optional-chaining" : " ^7.7.5" ,
8+ "@babel/plugin-transform-arrow-functions" : " ^7.7.4" ,
9+ "@babel/plugin-transform-block-scoped-functions" : " ^7.7.4" ,
10+ "@babel/plugin-transform-block-scoping" : " ^7.7.4" ,
11+ "@babel/plugin-transform-classes" : " ^7.7.4" ,
12+ "@babel/plugin-transform-computed-properties" : " ^7.7.4" ,
13+ "@babel/plugin-transform-destructuring" : " ^7.7.4" ,
14+ "@babel/plugin-transform-exponentiation-operator" : " ^7.7.4" ,
15+ "@babel/plugin-transform-literals" : " ^7.7.4" ,
16+ "@babel/plugin-transform-member-expression-literals" : " ^7.7.4" ,
17+ "@babel/plugin-transform-parameters" : " ^7.7.7" ,
18+ "@babel/plugin-transform-property-literals" : " ^7.7.4" ,
19+ "@babel/plugin-transform-shorthand-properties" : " ^7.7.4" ,
20+ "@babel/plugin-transform-spread" : " ^7.7.4" ,
21+ "@babel/plugin-transform-template-literals" : " ^7.7.4" ,
22+ "babel-loader" : " ^8.0.6" ,
23+ "babel-plugin-transform-es2015-modules-simple-commonjs" : " ~0.3.0" ,
24+ "babel-plugin-transform-for-of-as-array" : " ^1.1.1" ,
25+ "es-observable" : " git+https://github.com/tc39/proposal-observable.git#bf4d87144b6189e793593868e3c022eb51a7d292" ,
26+ "eslint" : " ^6.8.0" ,
27+ "eslint-import-resolver-webpack" : " ^0.12.0" ,
28+ "eslint-plugin-import" : " ^2.19.1" ,
29+ "eslint-plugin-node" : " ^10.0.0" ,
30+ "eslint-plugin-optimize-regex" : " ^1.1.7" ,
31+ "eslint-plugin-qunit" : " ^4.0.0" ,
32+ "eslint-plugin-sonarjs" : " ^0.5.0" ,
33+ "eslint-plugin-unicorn" : " ^15.0.0" ,
34+ "grunt" : " ^1.0.4" ,
35+ "grunt-cli" : " ^1.3.2" ,
36+ "grunt-contrib-clean" : " ^2.0.0" ,
1837 "grunt-contrib-copy" : " ^1.0.0" ,
19- "grunt-contrib-uglify" : " 3.3.x" ,
20- "grunt-contrib-watch" : " ^1.0.0" ,
21- "grunt-karma" : " ^2.0.0" ,
22- "grunt-livescript" : " 0.6.x" ,
23- "karma" : " ^2.0.0" ,
24- "karma-qunit" : " 1.2.x" ,
25- "karma-chrome-launcher" : " ^2.2.0" ,
26- "karma-firefox-launcher" : " ^1.0.1" ,
27- "karma-ie-launcher" : " ^1.0.0" ,
28- "karma-phantomjs-launcher" : " 1.0.x" ,
29- "phantomjs-prebuilt" : " 2.1.x" ,
38+ "grunt-contrib-uglify" : " ^4.0.1" ,
39+ "grunt-karma" : " ^3.0.2" ,
40+ "grunt-webpack" : " ^3.1.3" ,
41+ "karma" : " ^4.4.1" ,
42+ "karma-chrome-launcher" : " ^3.1.0" ,
43+ "karma-phantomjs-launcher" : " ~1.0.4" ,
44+ "karma-qunit" : " ^4.0.0" ,
45+ "lerna" : " ^3.19.0" ,
46+ "moon-unit" : " ^0.2.2" ,
47+ "phantomjs-prebuilt" : " ~2.1.16" ,
3048 "promises-aplus-tests" : " ^2.1.2" ,
31- "qunitjs" : " 2.4.x" ,
32- "temp" : " ^0.8.3" ,
33- "webpack" : " ^3.10.0"
49+ "puppeteer" : " ~2.0.0" ,
50+ "qunit" : " ~2.9.3" ,
51+ "webpack" : " ^4.41.4"
52+ },
53+ "license" : " MIT" ,
54+ "repository" : {
55+ "type" : " git" ,
56+ "url" : " https://github.com/zloirock/core-js.git"
3457 },
3558 "scripts" : {
36- "grunt" : " grunt" ,
37- "lint" : " eslint ./" ,
38- "promises-tests" : " promises-aplus-tests tests/promises-aplus/adapter" ,
39- "observables-tests" : " node tests/observables/adapter && node tests/observables/adapter-library" ,
40- "test" : " npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs"
59+ "bootstrap" : " lerna bootstrap --no-ci" ,
60+ "build" : " grunt clean copy && npm run bootstrap && npm run build-compat && grunt bundle uglify" ,
61+ "build-compat" : " npm run build-compat-data && npm run build-compat-entries && npm run build-compat-modules-by-versions" ,
62+ "build-compat-data" : " node packages/core-js-compat/src/build-data" ,
63+ "build-compat-entries" : " node packages/core-js-compat/src/build-entries" ,
64+ "build-compat-modules-by-versions" : " node packages/core-js-compat/src/build-modules-by-versions" ,
65+ "lint" : " grunt clean copy && npm run bootstrap && npm run build-compat && eslint ./" ,
66+ "unit-tests" : " grunt clean copy && npm run bootstrap && npm run build-compat && grunt bundle webpack:helpers webpack:tests karma:tests" ,
67+ "unit-tests-pure" : " grunt clean copy && npm run build-compat && grunt webpack:helpers webpack:pure karma:pure" ,
68+ "bundle-promises-tests" : " grunt webpack:promises-aplus-tests" ,
69+ "promises-tests" : " promises-aplus-tests tests/promises-aplus/adapter --timeout 1000" ,
70+ "observables-tests" : " babel node_modules/es-observable/test/ -d tests/bundles/observables-tests/ && node tests/observables/adapter && node tests/observables/adapter-pure" ,
71+ "commonjs-tests" : " node tests/commonjs" ,
72+ "commonjs-entries-content" : " node tests/commonjs-entries-content" ,
73+ "targets-parser-tests" : " node tests/targets-parser" ,
74+ "test" : " grunt clean copy && npm run bootstrap && npm run build-compat && eslint ./ && grunt webpack:helpers webpack:tests bundle uglify karma:tests webpack:helpers webpack:pure karma:pure && npm run promises-tests && npm run observables-tests && npm run commonjs-tests && npm run commonjs-entries-content && npm run targets-parser-tests"
4175 },
42- "license" : " MIT" ,
43- "keywords" : [
44- " ES3" ,
45- " ES5" ,
46- " ES6" ,
47- " ES7" ,
48- " ES2015" ,
49- " ES2016" ,
50- " ES2017" ,
51- " ECMAScript 3" ,
52- " ECMAScript 5" ,
53- " ECMAScript 6" ,
54- " ECMAScript 7" ,
55- " ECMAScript 2015" ,
56- " ECMAScript 2016" ,
57- " ECMAScript 2017" ,
58- " Harmony" ,
59- " Strawman" ,
60- " Map" ,
61- " Set" ,
62- " WeakMap" ,
63- " WeakSet" ,
64- " Promise" ,
65- " Symbol" ,
66- " TypedArray" ,
67- " setImmediate" ,
68- " Dict" ,
69- " polyfill" ,
70- " shim"
71- ]
72- }
76+ "engines" : {
77+ "node" : " >=8.9.0"
78+ }
79+ }
0 commit comments