-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 855 Bytes
/
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
{
"name": "babel-preset-bluebird",
"version": "1.0.1",
"description": "Transforms *async/await* and *Promise* to bluebird",
"keywords": ["babel", "babel-preset", "bluebird", "promise", "async", "await"],
"main": "main.es5.js",
"dependencies": {
"babel-plugin-transform-async-to-bluebird": "^1.0.0",
"babel-plugin-transform-promise-to-bluebird": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0"
},
"scripts": {
"prepublish": "babel main.es2015.js --out-file main.es5.js --source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chpio/babel-preset-bluebird.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chpio/babel-preset-bluebird/issues"
},
"homepage": "https://github.com/chpio/babel-preset-bluebird#readme"
}