-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
56 lines (56 loc) · 1.93 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "babel-plugin-transform-async-to-promises",
"version": "0.8.18",
"description": "Transform async/await to promise chains",
"main": "async-to-promises.js",
"scripts": {
"prepare": "tsc && node ./generate-helpers-string.js",
"format": "prettier --write async-to-promises.ts async-to-promises.test.js",
"test": "jest && prettier -c async-to-promises.ts async-to-promises.test.js",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpetrich/babel-plugin-transform-async-to-promises.git"
},
"keywords": [
"async",
"await",
"optimization",
"babel",
"compile",
"transform",
"minify"
],
"author": "Ryan Petrich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpetrich/babel-plugin-transform-async-to-promises/issues"
},
"homepage": "https://github.com/rpetrich/babel-plugin-transform-async-to-promises#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-external-helpers": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-transform-classes": "^7.16.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/plugin-transform-modules-systemjs": "^7.16.5",
"@babel/plugin-transform-parameters": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/traverse": "^7.16.5",
"@babel/types": "^7.16.0",
"@types/babel-traverse": "^6.25.7",
"@types/babel-types": "^7.0.11",
"@types/node": "^16.11.13",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-traverse": "^6.26.0",
"jest": "^27.4.5",
"prettier": "2.5.1",
"typescript": "^4.5.4"
}
}