Skip to content

Commit 46d311c

Browse files
committed
Parenthesize (async function expression() { })
Close estools#222
1 parent 6e29d12 commit 46d311c

4 files changed

Lines changed: 180 additions & 2597 deletions

File tree

package.json

Lines changed: 66 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,68 @@
11
{
2-
"name": "escodegen",
3-
"description": "ECMAScript code generator",
4-
"homepage": "http://github.com/estools/escodegen",
5-
"main": "escodegen.js",
6-
"bin": {
7-
"esgenerate": "./bin/esgenerate.js",
8-
"escodegen": "./bin/escodegen.js"
9-
},
10-
"files": [
11-
"LICENSE.BSD",
12-
"LICENSE.source-map",
13-
"README.md",
14-
"bin",
15-
"escodegen.js",
16-
"package.json"
17-
],
18-
"version": "1.6.0",
19-
"engines": {
20-
"node": ">=0.10.0"
21-
},
22-
"maintainers": [
23-
{
24-
"name": "Yusuke Suzuki",
25-
"email": "utatane.tea@gmail.com",
26-
"web": "http://github.com/Constellation"
2+
"name": "escodegen",
3+
"description": "ECMAScript code generator",
4+
"homepage": "http://github.com/estools/escodegen",
5+
"main": "escodegen.js",
6+
"bin": {
7+
"esgenerate": "./bin/esgenerate.js",
8+
"escodegen": "./bin/escodegen.js"
9+
},
10+
"files": [
11+
"LICENSE.BSD",
12+
"LICENSE.source-map",
13+
"README.md",
14+
"bin",
15+
"escodegen.js",
16+
"package.json"
17+
],
18+
"version": "1.6.0",
19+
"engines": {
20+
"node": ">=0.10.0"
21+
},
22+
"maintainers": [
23+
{
24+
"name": "Yusuke Suzuki",
25+
"email": "utatane.tea@gmail.com",
26+
"web": "http://github.com/Constellation"
27+
}
28+
],
29+
"repository": {
30+
"type": "git",
31+
"url": "http://github.com/estools/escodegen.git"
32+
},
33+
"dependencies": {
34+
"estraverse": "^1.9.1",
35+
"esutils": "^1.1.6",
36+
"esprima": "^1.2.2",
37+
"optionator": "^0.5.0"
38+
},
39+
"optionalDependencies": {
40+
"source-map": "~0.1.40"
41+
},
42+
"devDependencies": {
43+
"acorn-6to5": "^0.11.1-25",
44+
"bluebird": "^2.3.11",
45+
"bower-registry-client": "^0.2.1",
46+
"chai": "^1.10.0",
47+
"commonjs-everywhere": "^0.9.7",
48+
"esprima-moz": "*",
49+
"gulp": "^3.8.10",
50+
"gulp-eslint": "^0.2.0",
51+
"gulp-mocha": "^2.0.0",
52+
"semver": "^4.1.0"
53+
},
54+
"licenses": [
55+
{
56+
"type": "BSD",
57+
"url": "http://github.com/estools/escodegen/raw/master/LICENSE.BSD"
58+
}
59+
],
60+
"scripts": {
61+
"test": "gulp travis",
62+
"unit-test": "gulp test",
63+
"lint": "gulp lint",
64+
"release": "node tools/release.js",
65+
"build-min": "./node_modules/.bin/cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js",
66+
"build": "./node_modules/.bin/cjsify -a path: tools/entry-point.js > escodegen.browser.js"
2767
}
28-
],
29-
"repository": {
30-
"type": "git",
31-
"url": "http://github.com/estools/escodegen.git"
32-
},
33-
"dependencies": {
34-
"estraverse": "^1.9.1",
35-
"esutils": "^1.1.6",
36-
"esprima": "^1.2.2",
37-
"optionator": "^0.5.0"
38-
},
39-
"optionalDependencies": {
40-
"source-map": "~0.1.40"
41-
},
42-
"devDependencies": {
43-
"esprima-moz": "*",
44-
"semver": "^4.1.0",
45-
"bluebird": "^2.3.11",
46-
"chai": "^1.10.0",
47-
"gulp-mocha": "^2.0.0",
48-
"gulp-eslint": "^0.2.0",
49-
"gulp": "^3.8.10",
50-
"bower-registry-client": "^0.2.1",
51-
"commonjs-everywhere": "^0.9.7"
52-
},
53-
"licenses": [
54-
{
55-
"type": "BSD",
56-
"url": "http://github.com/estools/escodegen/raw/master/LICENSE.BSD"
57-
}
58-
],
59-
"scripts": {
60-
"test": "gulp travis",
61-
"unit-test": "gulp test",
62-
"lint": "gulp lint",
63-
"release": "node tools/release.js",
64-
"build-min": "./node_modules/.bin/cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js",
65-
"build": "./node_modules/.bin/cjsify -a path: tools/entry-point.js > escodegen.browser.js"
66-
}
67-
}
68+
}

0 commit comments

Comments
 (0)