forked from zloirock/core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 4.02 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
{
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.8.0",
"@babel/plugin-proposal-optional-chaining": "^7.8.0",
"@babel/plugin-transform-arrow-functions": "^7.8.0",
"@babel/plugin-transform-block-scoped-functions": "^7.8.0",
"@babel/plugin-transform-block-scoping": "^7.8.0",
"@babel/plugin-transform-classes": "^7.8.0",
"@babel/plugin-transform-computed-properties": "^7.8.0",
"@babel/plugin-transform-destructuring": "^7.8.0",
"@babel/plugin-transform-exponentiation-operator": "^7.8.0",
"@babel/plugin-transform-literals": "^7.8.0",
"@babel/plugin-transform-member-expression-literals": "^7.8.0",
"@babel/plugin-transform-parameters": "^7.8.0",
"@babel/plugin-transform-property-literals": "^7.8.0",
"@babel/plugin-transform-shorthand-properties": "^7.8.0",
"@babel/plugin-transform-spread": "^7.8.0",
"@babel/plugin-transform-template-literals": "^7.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-simple-commonjs": "~0.3.0",
"babel-plugin-transform-for-of-as-array": "^1.1.1",
"es-observable": "git+https://github.com/tc39/proposal-observable.git#bf4d87144b6189e793593868e3c022eb51a7d292",
"eslint": "^6.8.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-optimize-regex": "^1.1.7",
"eslint-plugin-qunit": "^4.0.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^15.0.1",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-karma": "^3.0.2",
"grunt-webpack": "^3.1.3",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-phantomjs-launcher": "~1.0.4",
"karma-qunit": "^4.0.0",
"lerna": "^3.20.2",
"moon-unit": "^0.2.2",
"phantomjs-prebuilt": "~2.1.16",
"promises-aplus-tests": "^2.1.2",
"puppeteer": "~2.0.0",
"qunit": "~2.9.3",
"webpack": "^4.41.5"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build": "grunt clean copy && npm run bootstrap && npm run build-compat && grunt bundle uglify",
"build-compat": "npm run build-compat-data && npm run build-compat-entries && npm run 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",
"lint": "grunt clean copy && npm run bootstrap && npm run build-compat && eslint ./",
"unit-tests": "grunt clean copy && npm run bootstrap && npm run build-compat && grunt bundle webpack:helpers webpack:tests karma:tests",
"unit-tests-pure": "grunt clean copy && npm run build-compat && grunt webpack:helpers webpack:pure karma:pure",
"bundle-promises-tests": "grunt webpack:promises-aplus-tests",
"promises-tests": "promises-aplus-tests tests/promises-aplus/adapter --timeout 1000",
"observables-tests": "babel node_modules/es-observable/test/ -d tests/bundles/observables-tests/ && node tests/observables/adapter && node tests/observables/adapter-pure",
"commonjs-tests": "node tests/commonjs",
"commonjs-entries-content": "node tests/commonjs-entries-content",
"targets-parser-tests": "node tests/targets-parser",
"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"
},
"engines": {
"node": ">=8.9.0"
}
}