-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
54 lines (54 loc) · 1 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
54
{
"name": "static-eval",
"description": "evaluate statically-analyzable expressions",
"version": "2.1.1",
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"contributors": [
{
"name": "Renée Kooi",
"email": "[email protected]"
}
],
"dependencies": {
"escodegen": "^2.1.0"
},
"devDependencies": {
"esprima": "^3.1.3",
"tape": "^4.10.1"
},
"homepage": "https://github.com/browserify/static-eval",
"keywords": [
"abstract",
"analysis",
"ast",
"esprima",
"eval",
"expression",
"static",
"syntax",
"tree"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/browserify/static-eval.git"
},
"scripts": {
"test": "tape test/*.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"ff/latest",
"chrome/latest",
"opera/latest",
"safari/latest"
]
}
}