-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 KB
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
33
34
35
36
37
38
39
40
41
{
"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"
}
}