-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 763 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 763 Bytes
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
{
"name": "babel-plugin-transform-catch",
"author": "Aleksandr Kunin <skyksandr@gmail.com>",
"repository": "skyksandr/babel-plugin-transform-catch",
"description": "Transforms .catch(..) to ['catch'](...)",
"version": "0.1.1",
"main": "build/index.js",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"mocha": "^10.1.0"
},
"scripts": {
"clean": "rm -rf build",
"build": "babel src -d build",
"test": "mocha --require @babel/register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"google-apps-script",
"js",
"babel",
"babel-plugin"
]
}