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
|
{
"name": "babel-plugin-async-to-promises",
"version": "1.0.5",
"description": "Transpile ES7 async/await to vanilla ES6 Promise chains",
"repository": "marten-de-vries/kneden",
"author": "Marten de Vries",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.3.17",
"babel-eslint": "^6.0.0-beta.6",
"babel-istanbul": "^0.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "^2.0.0",
"mocha": "^2.2.5"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "npm run test:lint && npm run test:cov",
"test:cov": "babel-node node_modules/.bin/babel-istanbul cover _mocha && babel-istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"test:js": "mocha --compilers js:babel-register",
"test:lint": "eslint src/*.js test/index.js && eslint test/fixtures/*/*.js",
"test:watch": "npm run test:js -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"es",
"7",
"6",
"babel",
"promise",
"async",
"await",
"promises",
"function",
"functions",
"plugin",
"babel-plugin"
],
"dependencies": {
"babel-helper-hoist-variables": "^6.5.0",
"babel-template": "^6.3.13",
"babel-types": "^6.5.2",
"js-extend": "^1.0.1"
},
"license": "ISC"
}
|