* chore: move generate-standalone to gulp tasks * move build-flow-typings to gulp tasks * chore: move build-typescript-typings to gulp tasks * move generate-type-helpers to gulp tasks * chore: include build-typings and generate-type-helpers in gulp build * update generate-standalone comments * address review comments * chore: revert build-typings refactor * fix: run build-typings in build-no-bundle
35 lines
841 B
JSON
35 lines
841 B
JSON
{
|
|
"name": "@babel/types",
|
|
"version": "7.12.10",
|
|
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
|
"homepage": "https://babeljs.io/",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/babel/babel.git",
|
|
"directory": "packages/babel-types"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"typesVersions": {
|
|
">=3.7": {
|
|
"lib/index.d.ts": [
|
|
"lib/index-ts3.7.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@babel/helper-validator-identifier": "workspace:^7.10.4",
|
|
"lodash": "^4.17.19",
|
|
"to-fast-properties": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/generator": "workspace:*",
|
|
"@babel/parser": "workspace:*"
|
|
}
|
|
}
|