-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.04 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
{
"name": "ast-redeclare",
"version": "1.0.4",
"description": "Hoist variable declarations to the top of scope.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/dfcreative/ast-redeclare"
},
"keywords": [
"ast",
"hoist",
"ast-hoist",
"esparse",
"hoister",
"redeclare",
"variables",
"declarations",
"constants",
"folding",
"fold",
"constants-folding",
"optimization",
"compilation",
"esprima",
"escodegen",
"analysis",
"data-flow",
"dataflow"
],
"author": "Deema Ywanov <df.creative@gmail.com>",
"license": "Unlicensed",
"bugs": {
"url": "https://github.com/dfcreative/ast-redeclare/issues"
},
"homepage": "https://github.com/dfcreative/ast-redeclare",
"devDependencies": {
"chai": "^2.0.0",
"escodegen": "^1.6.1",
"esprima": "^2.0.0",
"mocha": "^2.1.0"
},
"dependencies": {
"ast-types": "^0.6.12",
"escope": "^2.0.4"
}
}