-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "lispyscript",
"description": "A JavaScript with Lispy Syntax and Macros",
"keywords": [
"javascript",
"language",
"lispyscript",
"compiler",
"lisp"
],
"author": "Santosh Rajan",
"version": "1.0.2",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/santoshrajan/lispyscript/master/LICENSE"
}
],
"engines": {
"node": ">=0.4.0"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/ls",
"bin": {
"lispy": "./bin/lispy.js"
},
"homepage": "https://github.com/santoshrajan/lispyscript",
"bugs": "https://github.com/santoshrajan/lispyscript/issues",
"repository": {
"type": "git",
"url": "git://github.com/santoshrajan/lispyscript.git"
},
"devDependencies": {
"browserify": ">2.14.1",
"tinix": "<=0.0.15",
"brfs": ">=0.0.6",
"underscore": "^1.8.2"
},
"scripts": {
"test": "lispy test/test.ls test/test.js && node test/test.js",
"prepublish": "lispy src/lispy.ls lib/lispy.js && lispy src/repl.ls lib/repl.js && lispy src/require.ls lib/require.js && browserify -t brfs lib/browser.js > lib/browser-bundle.js && lispy test/test.ls test/test.js"
},
"preferGlobal": true,
"dependencies": {
"node-getopt": ">=0.2.3",
"source-map": ">= 0.1.40",
"watch": ">= 0.14.0"
}
}