UNPKG

1.98 kBJSONView Raw
1{
2 "name": "babel-plugin-transform-async-to-promises",
3 "version": "0.8.18",
4 "description": "Transform async/await to promise chains",
5 "main": "async-to-promises.js",
6 "scripts": {
7 "prepare": "tsc && node ./generate-helpers-string.js",
8 "format": "prettier --write async-to-promises.ts async-to-promises.test.js",
9 "test": "jest && prettier -c async-to-promises.ts async-to-promises.test.js",
10 "test:coverage": "jest --coverage"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/rpetrich/babel-plugin-transform-async-to-promises.git"
15 },
16 "keywords": [
17 "async",
18 "await",
19 "optimization",
20 "babel",
21 "compile",
22 "transform",
23 "minify"
24 ],
25 "author": "Ryan Petrich <rpetrich@gmail.com>",
26 "license": "MIT",
27 "bugs": {
28 "url": "https://github.com/rpetrich/babel-plugin-transform-async-to-promises/issues"
29 },
30 "homepage": "https://github.com/rpetrich/babel-plugin-transform-async-to-promises#readme",
31 "devDependencies": {
32 "@babel/core": "^7.16.5",
33 "@babel/plugin-external-helpers": "^7.16.5",
34 "@babel/plugin-proposal-class-properties": "^7.16.5",
35 "@babel/plugin-transform-classes": "^7.16.5",
36 "@babel/plugin-transform-modules-commonjs": "^7.16.5",
37 "@babel/plugin-transform-modules-systemjs": "^7.16.5",
38 "@babel/plugin-transform-parameters": "^7.16.5",
39 "@babel/preset-env": "^7.16.5",
40 "@babel/traverse": "^7.16.5",
41 "@babel/types": "^7.16.0",
42 "@types/babel-traverse": "^6.25.7",
43 "@types/babel-types": "^7.0.11",
44 "@types/node": "^16.11.13",
45 "babel-core": "^6.26.3",
46 "babel-plugin-external-helpers": "^6.22.0",
47 "babel-plugin-transform-class-properties": "^6.24.1",
48 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
49 "babel-plugin-transform-es2015-parameters": "^6.24.1",
50 "babel-preset-env": "^1.7.0",
51 "babel-traverse": "^6.26.0",
52 "jest": "^27.4.5",
53 "prettier": "2.5.1",
54 "typescript": "^4.5.4"
55 }
56}