-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 982 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 982 Bytes
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
{
"name": "liyad-cli",
"version": "0.1.2",
"description": "CLI and REPL for Liyad (Lisp yet another DSL interpreter).",
"keywords": [
"lisp",
"REPL",
"CLI",
"interpreter",
"parser",
"S-expression",
"Liyad",
"DSL",
"JSX",
"LSX"
],
"bin": {
"liyad": "cli-main.js"
},
"main": "index.js",
"scripts": {
"build": "echo \"no build specified\"",
"clean": "echo \"no clean specified\"",
"lint": "eslint index.js lib/**/*.js",
"test": "bash test.sh",
"start": "node index.js"
},
"engines": {
"node": ">=10.0"
},
"pkg": {
"targets": [
"node10"
]
},
"dependencies": {
"liyad": "^0.4.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/shellyln/liyad-cli.git"
},
"author": "shellyln",
"homepage": "https://shellyln.github.io/",
"bugs": {
"url": "https://github.com/shellyln/liyad-cli/issues"
},
"license": "ISC"
}