forked from ben-ng/meatloaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"name": "meatloaf",
"version": "1.0.1",
"description": "",
"main": "lib/grammar2table",
"scripts": {
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/ben-ng/meatloaf"
},
"keywords": [
"lr",
"sr",
"slr",
"lalr",
"parser",
"context-free",
"stream",
"compiler"
],
"author": "Ben Ng <me@benng.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ben-ng/meatloaf/issues"
},
"homepage": "https://github.com/ben-ng/meatloaf",
"dependencies": {
"finite-automata": "^3.4.1",
"deep-equal": "^0.2.1",
"lodash.uniq": "^2.4.1"
},
"devDependencies": {
"tape": "2.x.x",
"cli-table": "^0.3.0",
"lodash.keys": "^2.4.1",
"lodash.values": "^2.4.1"
},
"testling": {
"files": "test/index.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
]
}
}