forked from daynin/tiny-lisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 798 Bytes
/
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
{
"name": "tiny-lisp",
"version": "0.0.13",
"description": "A super small and pretty simple Lisp to JS compiler",
"repository": {
"type": "git",
"url": "[email protected]:daynin/tiny-lisp.git"
},
"main": "index.js",
"scripts": {
"test": "gulp build",
"start": "gulp serve",
"build": "build"
},
"author": "Sergey Golovin <[email protected]> (http://github.com/daynin)",
"directories": {
"lib": "./lib"
},
"bin": {
"tiny-lisp": "index.js"
},
"license": "MIT",
"keywords": [
"javascript",
"lisp",
"js",
"nodejs",
"node"
],
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-jasmine": "^2.3.0",
"gulp-jison": "^1.2.0",
"gulp-watch": "^4.3.5"
}
}