-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "bach-cljs",
"version": "3.0.0-beta.1",
"description": "Semantic music notation",
"type": "commonjs",
"main": "./dist/bach.cjs",
"directories": {
"test": "test"
},
"dependencies": {
"@peculiar/webcrypto": "^1.1.7",
"google-closure-library": "^20210106.0.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"docsify": "^4.12.0",
"shadow-cljs": "^2.11.15"
},
"scripts": {
"dev": "npx shadow-cljs compile lib && npx shadow-cljs watch lib",
"build": "npx shadow-cljs release lib",
"build:esm": "npx shadow-cljs release esm",
"build:npm": "npx shadow-cljs release npm",
"build:umd": "npx shadow-cljs release umd",
"repl": "npx shadow-cljs node-repl lib",
"cljs-repl": "npx shadow-cljs cljs-repl lib",
"clj-repl": "npx shadow-cljs clj-repl lib",
"docs": "docsify serve docs",
"test": "npx shadow-cljs compile test && node target/js/node-tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slurmulon/bach.git"
},
"keywords": [
"music",
"song",
"notation",
"rhythm",
"semantic",
"scale",
"chord"
],
"author": "Erik Vavro",
"license": "MIT",
"bugs": {
"url": "https://github.com/slurmulon/bach/issues"
},
"homepage": "https://github.com/slurmulon/bach#readme"
}