mirror of https://gitee.com/antv-l7/antv-l7
45 lines
1017 B
JSON
45 lines
1017 B
JSON
{
|
|
"name": "babel-plugin-const-enum",
|
|
"version": "0.0.2",
|
|
"description": "Transform TypeScript `const` enums",
|
|
"repository": "https://github.com/dosentmatter/babel-plugin-const-enum",
|
|
"author": "Kevin Lau",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"keywords": [
|
|
"babel-plugin",
|
|
"typescript",
|
|
"const",
|
|
"enum",
|
|
"terser",
|
|
"uglify",
|
|
"minify",
|
|
"compress"
|
|
],
|
|
"scripts": {
|
|
"build": "babel src --out-dir lib",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "jest"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/core": "^7.0.0-0",
|
|
"@babel/generator": "^7.0.0-0"
|
|
},
|
|
"dependencies": {
|
|
"@babel/helper-plugin-utils": "^7.0.0",
|
|
"@babel/plugin-syntax-typescript": "^7.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.5.0",
|
|
"@babel/core": "^7.5.0",
|
|
"@babel/generator": "^7.5.0",
|
|
"@babel/helper-plugin-test-runner": "^7.1.0",
|
|
"@babel/preset-env": "^7.5.0",
|
|
"babel-jest": "^24.8.0",
|
|
"jest": "^24.8.0"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
]
|
|
}
|