-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
22 lines (18 loc) · 869 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ "name" : "canopy"
, "description" : "PEG parser compiler for JavaScript"
, "homepage" : "https://canopy.jcoglan.com"
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
, "keywords" : ["parser", "compiler", "peg"]
, "license" : "MPL-2.0"
, "version" : "0.4.0"
, "engines" : { "node": ">=8.0.0" }
, "files" : ["bin", "lib", "templates"]
, "main" : "./lib/canopy.js"
, "bin" : { "canopy": "./bin/canopy" }
, "dependencies" : { "handlebars": ">=4.0.0", "nopt": "*" }
, "devDependencies" : { "benchmark": "", "jstest": "", "pegjs": "" }
, "bugs" : { "url": "https://github.com/jcoglan/canopy/issues" }
, "repository" : { "type" : "git"
, "url" : "git://github.com/jcoglan/canopy.git"
}
}