-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
55
56
57
58
59
60
61
62
63
{
"name": "esfuzz",
"version": "0.3.1",
"description": "JS fuzzer for generative testing of parsers that implement the SpiderMonkey Reflect.parse API",
"homepage": "https://github.com/michaelficarra/esfuzz",
"keywords": [
"fuzzer",
"fuzz",
"JavaScript",
"program",
"parser",
"test",
"generative",
"ECMAScript",
"ECMA-262",
"SpiderMonkey",
"Reflect.parse"
],
"author": {
"name": "Michael Ficarra",
"email": "git@michael.ficarra.me"
},
"repository": {
"type": "git",
"url": "git://github.com/michaelficarra/esfuzz"
},
"bugs": "https://github.com/michaelficarra/esfuzz/issues",
"engines": {
"node": "0.8.x || 0.9.x || 0.10.x"
},
"main": "lib/index.js",
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"dependencies": {
"escodegen": "git://github.com/Constellation/escodegen.git",
"nopt": "~2.1.2"
},
"optionalDependencies": {
"esprima": "git://github.com/ariya/esprima.git",
"acorn": "git://github.com/marijnh/acorn.git",
"reflect": "git://github.com/zaach/reflect.js.git",
"zeparser": "git://github.com/qfox/ZeParser.git",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git"
},
"devDependencies": {
"coffee-script-redux": "2.0.0-beta7",
"commonjs-everywhere": "0.9.x",
"mocha": "1.x",
"semver": "2.x"
},
"scripts": {
"test": "make test"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/michaelficarra/esfuzz/blob/master/LICENSE"
}
]
}