UNPKG

976 BJSONView Raw
1{
2 "name": "lispyscript",
3 "description": "A Javascript with Lispy syntax and macros",
4 "keywords": ["javascript", "language", "lispyscript", "compiler", "lisp"],
5 "author": "Santosh Rajan",
6 "version": "0.1.8",
7 "licenses": [{
8 "type": "MIT",
9 "url": "https://raw.github.com/santoshrajan/lispyscript/master/LICENSE"
10 }],
11 "engines": {
12 "node": ">=0.4.0"
13 },
14 "directories" : {
15 "lib" : "./lib"
16 },
17 "main" : "./lib/ls",
18 "bin": {
19 "lispy": "./bin/lispy.js"
20 },
21 "homepage": "https://github.com/santoshrajan/lispyscript",
22 "bugs": "https://github.com/santoshrajan/lispyscript/issues",
23 "repository": {
24 "type": "git",
25 "url": "git://github.com/santoshrajan/lispyscript.git"
26 },
27 "scripts": {
28 "prepublish": "lispy src/lispy.ls lib/lispy.js && lispy src/repl.ls lib/repl.js && lispy src/node.ls lib/node.js && lispy src/browser.ls lib/browser.js"
29 },
30 "dependencies": {
31 "underscore": ">=1.0.0",
32 "amd-loader": "~0.0.4"
33 }
34}