-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "babel-plugin-transform-async-to-bluebird",
"version": "1.1.1",
"description": "Transforms *async* to *bluebird*",
"main": "main.es5.js",
"dependencies": {
"babel-helper-function-name": "^6.8.0",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-template": "^6.9.0",
"babel-traverse": "^6.10.4"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.24.1",
"bluebird": "^3.5.0",
"mocha": "^3.3.0"
},
"scripts": {
"test": "mocha --require babel-register",
"prepublish": "babel main.es2015.js --out-file main.es5.js --source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chpio/babel-plugin-transform-async-to-bluebird.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chpio/babel-plugin-transform-async-to-bluebird/issues"
},
"homepage": "https://github.com/chpio/babel-plugin-transform-async-to-bluebird#readme"
}