31 lines
700 B
JSON
31 lines
700 B
JSON
{
|
|
"name": "treegen",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "A tool to generate definitions for an arbitrary abstract syntax tree (AST)",
|
|
"main": "lib/index.js",
|
|
"bin": {
|
|
"treegen": "lib/bin/treegen.js"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha lib/test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/samvv/BoltJS.git"
|
|
},
|
|
"keywords": [
|
|
"ast",
|
|
"tree",
|
|
"code-generator"
|
|
],
|
|
"author": "Sam Vervaeck <samvv@pm.me>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/samvv/BoltJS/issues"
|
|
},
|
|
"homepage": "https://github.com/samvv/BoltJS#readme",
|
|
"devDependencies": {
|
|
"pegjs": "^0.11.0-master.b7b87ea"
|
|
}
|
|
}
|