reparse-coffeescript/package.json

30 lines
742 B
JSON
Raw Normal View History

{
"name": "reparse-coffee",
"description": "An implementation of a parser combinator in coffeescript.",
2012-05-04 18:59:45 +00:00
"author": { "name": "Elf M. Sternberg" },
"version": "0.0.1",
2012-05-04 18:59:45 +00:00
"keywords": ["parser", "coffeescript"],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/elfsternberg/reparse/raw/master/LICENSE"
}
],
"dependencies": {
"coffee-script": "1.x.x"
},
"devDependencies": {
"docco": "0.3.x"
},
"scripts": {
"pre-install": "mkdir -p lib && ./node_modules/.bin/coffee -o lib src/reparse.js"
},
"directories": {
"lib": "./lib"
},
2012-05-04 18:59:45 +00:00
"main": "./lib/reparse",
"engines": {
"node": ">= 0.6.0"
}
}