Unify main property in package.json [skip ci] (#7825)

This commit is contained in:
Hana Shiro 2018-05-01 11:15:02 -05:00 committed by Henry Zhu
parent 8060ae5dae
commit 494a56df5f
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
"name": "@babel/core", "name": "@babel/core",
"version": "7.0.0-beta.46", "version": "7.0.0-beta.46",
"description": "Babel compiler core.", "description": "Babel compiler core.",
"main": "./lib/index.js", "main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
"license": "MIT", "license": "MIT",

View File

@ -4,7 +4,7 @@
"description": "Transforms logical assignment operators into short-circuited assignments", "description": "Transforms logical assignment operators into short-circuited assignments",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-logical-assignment-operators", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-logical-assignment-operators",
"license": "MIT", "license": "MIT",
"main": "lib", "main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],

View File

@ -4,7 +4,7 @@
"description": "Remove nullish coalescing operator", "description": "Remove nullish coalescing operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-nullish-coalescing-opearator", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-nullish-coalescing-opearator",
"license": "MIT", "license": "MIT",
"main": "lib", "main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],

View File

@ -4,7 +4,7 @@
"description": "Allow parsing of the logical assignment operators", "description": "Allow parsing of the logical assignment operators",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-logical-assignment-operators", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-logical-assignment-operators",
"license": "MIT", "license": "MIT",
"main": "lib", "main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],

View File

@ -4,7 +4,7 @@
"description": "Allow parsing of the nullish-coalescing operator", "description": "Allow parsing of the nullish-coalescing operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator",
"license": "MIT", "license": "MIT",
"main": "lib", "main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],