babel-plugin-transform-jsbi-to-bigint
Version:
Compile JSBI code to native BigInt code.
42 lines (41 loc) • 1.17 kB
JSON
{
"name": "babel-plugin-transform-jsbi-to-bigint",
"version": "1.4.2",
"description": "Compile JSBI code to native BigInt code.",
"keywords": [
"babel-plugin",
"bigint"
],
"homepage": "https://babeljs.io/",
"bugs": "https://github.com/GoogleChromeLabs/babel-plugin-transform-jsbi-to-bigint/issues",
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/babel-plugin-transform-jsbi-to-bigint.git"
},
"license": "Apache-2.0",
"files": [
"dist/**"
],
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"ci": "npm run lint && git status && git diff-index --quiet HEAD -- && npm test",
"clean": "rm -rf dist",
"lint": "eslint --fix src/index.js",
"prepublish": "npm run clean && npm run build",
"test": "mocha --require @babel/register",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/register": "^7.13.16",
"eslint": "^6.2.0",
"eslint-config-google": "^0.13.0",
"mocha": "^6.2.0"
},
"engines": {
"node": ">=8"
}
}