babel-plugin-transform-private-to-hash
Version:
Transform ES private fields/methods to hashed properties.
57 lines (56 loc) • 1.43 kB
JSON
{
"name": "babel-plugin-transform-private-to-hash",
"version": "1.1.1",
"description": "Transform ES private fields/methods to hashed properties.",
"repository": {
"type": "git",
"url": "git+https://github.com/linsk1998/babel-plugin-transform-private-to-hash.git"
},
"bugs": {
"url": "https://github.com/linsk1998/babel-plugin-transform-private-to-hash/issues"
},
"homepage": "https://github.com/linsk1998/babel-plugin-transform-private-to-hash#readme",
"author": "linsk<linsk@live.com>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha tests/**/*.test.js --require ts-node/register",
"prepublishOnly": "npm test && npm run build"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/types": "^7.24.0",
"@types/babel__core": "~7.1.19",
"@types/babel__helper-plugin-utils": "~7.10.0",
"@types/babel__template": "~7.4.1",
"@types/babel__traverse": "~7.18.1",
"@types/node": "^14.0.0",
"mocha": "^8.0.1",
"ts-node": "^10.9.2",
"typescript": "~4.3.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"babel-plugin",
"private",
"class",
"hash",
"es2022",
"es13"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.1",
"murmurhash": "^2.0.1",
"slash": "^3.0.0"
}
}