-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "fonda",
"version": "1.0.0-alpha.1",
"description": "An async pipeline approach to functional core - imperative shell.",
"license": "Unlicense",
"contributors": [
"David Cerezo Iñigo <[email protected]",
"Andrea Richiardi <[email protected]>",
"Sebastian Schulz"
],
"keywords": [
"path",
"clojurescript",
"clojure",
"async",
"pipeline"
],
"files": [
"src/*",
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/arichiardi/fonda"
},
"scripts": {
"print-version": "echo $npm_package_version",
"repl": "./scripts/repl",
"watch": "yarn shadow-cljs watch lib",
"build": "yarn shadow-cljs release lib",
"test": "yarn shadow-cljs release test && node dist/test.js",
"test:watch": "yarn shadow-cljs watch test",
"deploy:release": "make clean && make jar && scripts/prepare-release && scripts/deploy-jar -j ./fonda.jar",
"deploy:snapshot": "make clean && make jar && scripts/prepare-release --snapshot -s && scripts/deploy-jar -j fonda.jar"
},
"devDependencies": {
"shadow-cljs": "2.8.15"
},
"dependencies": {}
}