Skip to content

Commit eb8aa15

Browse files
committedJul 10, 2018
updated package json
1 parent 64cd91e commit eb8aa15

File tree

3 files changed

+14
-19
lines changed

3 files changed

+14
-19
lines changed
 

‎package-lock.json

+1-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "synthland",
33
"version": "0.1.0",
4-
"description": "",
4+
"description": "Plays randomly generated FM synths.",
55
"main": "src/index.js",
66
"bin": {
77
"synthland": "bin/synthland"
@@ -26,5 +26,13 @@
2626
"babel-plugin-transform-object-rest-spread": "^6.26.0",
2727
"gh-pages": "^1.2.0",
2828
"parcel": "^1.9.4"
29-
}
29+
},
30+
"repository": {
31+
"type": "git",
32+
"url": "git+https://github.com/joshwnj/synthland.git"
33+
},
34+
"bugs": {
35+
"url": "https://github.com/joshwnj/synthland/issues"
36+
},
37+
"homepage": "https://github.com/joshwnj/synthland#readme"
3038
}

‎src/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ const compressor = setParams(ac.createDynamicsCompressor(), {
7373
knee: 0,
7474
reduction: 20.0,
7575
ratio: 10,
76-
attack: 3.0001,
77-
release: 1.050
76+
attack: 1.0,
77+
release: 1.0
7878
})
7979

8080
connectAll(
@@ -174,7 +174,7 @@ setInterval(() => {
174174
const props = {
175175
time: ac.currentTime,
176176
duration: rand.inRange(10, 20),
177-
detune: rand.from([ 0, 1200, 2400 ])
177+
detune: rand.from([ 0, 1200 ])
178178
}
179179

180180
play(fn, props, detuneSource1)

0 commit comments

Comments
 (0)
Please sign in to comment.