LispInSmallPieces/package.json

35 lines
797 B
JSON
Raw Normal View History

2015-05-14 05:28:55 +00:00
{
2015-07-08 03:22:19 +00:00
"name": "LispInSmallPieces",
2015-05-14 05:28:55 +00:00
"version": "0.0.1",
"description": "A Coffeescript rendition of Lisp In Small Pieces",
"main": "bin/lisp",
"dependencies": {
"coffee-script": "^1.9.1",
"cons-lists": "git+https://github.com/elfsternberg/cons-lists.git"
2015-05-14 05:28:55 +00:00
},
"devDependencies": {
"coffeelint": "~1.10.0",
2015-05-14 05:28:55 +00:00
"chai": "^2.0.0",
2015-06-17 20:47:15 +00:00
"mocha": "^2.1.0",
2015-06-17 20:46:22 +00:00
"mocha-jenkins-reporter": "^0.1.7"
2015-05-14 05:28:55 +00:00
},
"scripts": {
2015-07-08 03:22:19 +00:00
"test": "make test",
"build": "make node_modules"
},
"repository": {
"type": "git",
"url": "ssh://elfsternberg@elfsternberg.com/home/elfsternberg/repos/LispInSmallPieces"
2015-05-14 05:28:55 +00:00
},
"keywords": [
2015-07-08 03:22:19 +00:00
"lisp",
2015-05-14 05:28:55 +00:00
"scheme",
"practice",
"interpreter",
"javascript",
"coffeescript"
],
"author": "Elf M. Sternberg",
"license": "MIT"
}