-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 759 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"name": "smoothfade",
"version": "1.1.1",
"description": "Smooth volume fading for WebAudio",
"main": "index.js",
"scripts": {
"test": "jshint index.js && browserify test.js > bundle.js && http-server",
"build": "jshint index.js && js-beautify -r index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/notthetup/smoothfade.git"
},
"keywords": [
"webaudio",
"fade",
"volume",
"gain"
],
"author": "Chinmay Pendharkar",
"license": "Apache2",
"bugs": {
"url": "https://github.com/notthetup/smoothfade/issues"
},
"homepage": "https://github.com/notthetup/smoothfade",
"devDependencies": {
"browserify": "^16.5.0",
"js-beautify": "^1.10.2",
"jshint": "^2.10.2"
}
}