-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
71 lines (71 loc) · 2.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "closh",
"version": "0.5.0",
"description": "Bash-like shell based on Clojure",
"bin": {
"closh": "./bin/closh.sh"
},
"directories": {
"doc": "doc",
"test": "test"
},
"dependencies": {
"deasync": "0.1.14",
"glob": "7.1.3",
"lumo-cljs": "1.9.0-alpha",
"sqlite3": "4.0.4",
"tmp": "0.0.33"
},
"devDependencies": {
"nodemon": "1.18.7",
"pkg-lumo": "1.0.2"
},
"engines": {
"node": "9.x"
},
"scripts": {
"start": "./bin/closh.sh",
"preinstall": "node scripts/check-requirements",
"dev": "nodemon --config .nodemon.json",
"docker-build": "docker build . -t closh",
"docker-start": "npm run docker-build && docker run --rm -it closh",
"pkg-lumo": "pkg-lumo -c src/common:src/lumo -m closh.main",
"pkg-java": "npm run compile-uberjar && scripts/wrap-jar.sh target/closh-zero.jar",
"compile-uberjar": "clojure -M:depstar -m hf.depstar.uberjar --compile -m closh.zero.frontend.rebel target/closh-zero.jar --verbose",
"lint": "clojure -M:lint",
"lint-fix": "clojure -M:lint:lint/fix",
"lint-kondo": "clj-kondo --lint src:test",
"test": "npm run test-cljs && npm run test-clj && npm run test-clj-sci",
"test-auto": "nodemon -e clj,cljs,cljc -x \"npm run test-cljs; npm run test-clj\"",
"test-cljs": "lumo -K -c src/common:src/lumo:test -m closh.test-util.runner",
"test-cljs-auto": "nodemon -e clj,cljs,cljc -x \"npm run test-cljs\"",
"test-windows": "lumo -K -c src/common;src/lumo;test -m closh.test-util.runner",
"test-docker": "npm run docker-build && docker run --rm -it closh npm run test",
"test-clj": "clojure -Mtest -m closh.test-util.runner",
"test-clj-sci": "env __CLOSH_USE_SCI_EVAL__=true clojure -M:sci:test -m closh.test-util.runner",
"test-clj-sci-complete": "env __CLOSH_USE_SCI_COMPLETE__=true __CLOSH_USE_SCI_EVAL__=true clojure -M:sci:test -m closh.test-util.runner",
"test-clj-sci-native": "env __CLOSH_USE_SCI_NATIVE__=true __CLOSH_USE_SCI_EVAL__=true clojure -M:sci:test -m closh.test-util.runner",
"test-clj-kaocha": "clojure -M:kaocha -m kaocha.runner",
"test-clj-kaocha-auto": "clojure -M:kaocha -m kaocha.runner --watch",
"test-clj-auto": "nodemon -e clj,cljs,cljc -x \"npm run test-clj\"",
"rebel": "clojure -M -e \"(set! *warn-on-reflection* true)\" -m closh.zero.frontend.rebel",
"sci-rebel": "env __CLOSH_USE_SCI_EVAL__=true clojure -M:sci -e \"(set! *warn-on-reflection* true)\" -m closh.zero.frontend.sci-rebel",
"sci-plain": "env __CLOSH_USE_SCI_EVAL__=true clojure -M:sci -e \"(set! *warn-on-reflection* true)\" -m closh.zero.frontend.sci",
"repl": "clj -m closh.zero.frontend.clojure-main-repl"
},
"repository": {
"type": "git",
"url": "https://github.com/dundalek/closh"
},
"keywords": [
"command",
"shell",
"bash",
"sh",
"cli",
"clojure",
"clojurescript"
],
"author": "Jakub Dundalek",
"license": "EPL-1.0"
}