-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 1.86 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
72
73
74
75
{
"name": "total-serialism",
"version": "2.7.5",
"description": "A set of methods for the generation and transformation of number sequences useful in algorithmic composition",
"main": "index.js",
"scripts": {
"test": "jest test/**.test.js",
"build": "npm run database && npm run clean && npm run bundle && npm run build-es5 && npm run build-min",
"clean": "rm -rf build",
"bundle": "mkdir build && browserify --standalone TotalSerialism index.js > build/ts.bundle.js",
"build-es5": "babel build/ts.bundle.js -o build/ts.es5.js",
"build-min": "uglifyjs build/ts.es5.js -o build/ts.es5.min.js",
"database": "node src/database.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tmhglnd/serialism.js.git"
},
"keywords": [
"serialism",
"composition",
"total",
"algorithmic",
"twelvetone",
"melody",
"pitch",
"rhythm",
"harmony",
"chord",
"progression",
"sequence",
"pattern",
"note",
"tone",
"rhythmic",
"generative",
"transformation",
"permutation",
"hexbeat",
"fibonacci",
"pisano",
"lindenmayer",
"l-system",
"euclidean",
"scala",
"tuning",
"cellular",
"automaton",
"markov",
"chain"
],
"author": "Timo Hoogland",
"license": "MIT",
"bugs": {
"url": "https://github.com/tmhglnd/serialism.js/issues"
},
"homepage": "https://github.com/tmhglnd/serialism.js#readme",
"dependencies": {
"@tonaljs/tonal": "^3.7.5",
"asciichart": "^1.5.25",
"bignumber.js": "^9.0.2",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"browserify": "^16.5.2",
"fast-glob": "^3.2.11",
"fs-extra": "^9.1.0",
"jest": "^28.1.3",
"nodemon": "^2.0.18",
"uglify-js": "^3.16.2"
}
}