-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 825 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "babel-plugin-transform-bigint",
"version": "1.0.34",
"description": "A plugin for babel to transform `x * y` into something like `JSBI.multiply(x, y)` to support bigints.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-syntax-bigint": "^7.8.3"
},
"keywords": [
"babel-plugin",
"bigint",
"jsbi"
],
"bugs": {
"url": "https://github.com/Yaffle/babel-plugin-transform-bigint/issues"
},
"homepage": "https://github.com/Yaffle/babel-plugin-transform-bigint#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Yaffle/babel-plugin-transform-bigint.git"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"jest": "^28.1.0"
}
}