mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
{
|
|
"name": "babel-plugin-const-enum",
|
|
"version": "1.2.0",
|
|
"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": "yarn run build",
|
|
"test": "jest",
|
|
"lint-fix": "eslint --fix 'src/**/*.js' '__tests__/**/*.js'",
|
|
"prettier-fix": "prettier --write 'src/**/*.js' '__tests__/**/*.js'"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/core": "^7.0.0-0"
|
|
},
|
|
"dependencies": {
|
|
"@babel/helper-plugin-utils": "^7.0.0",
|
|
"@babel/plugin-syntax-typescript": "^7.3.3",
|
|
"@babel/traverse": "^7.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.5.0",
|
|
"@babel/core": "^7.5.0",
|
|
"@babel/plugin-transform-typescript": "^7.9.4",
|
|
"@babel/preset-env": "^7.5.0",
|
|
"babel-jest": "^27.0.6",
|
|
"eslint": "^7.7.0",
|
|
"jest": "^27.0.6",
|
|
"prettier": "^2.0.4"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
]
|
|
}
|
|
|