forked from kevincennis/TinyMusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "tinymusic",
"version": "0.0.1",
"description": "A simple, lightweight music sequencer in JavaScript using the Web Audio API.",
"main": "./index.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/kevincennis/TinyMusic.git"
},
"keywords": [
"Music",
"JavaScript",
"Sequencer",
"Web",
"Audio",
"API"
],
"author": "Kevin Ennis",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevincennis/TinyMusic/issues"
},
"homepage": "https://github.com/kevincennis/TinyMusic",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-uglify": "^0.5.1",
"load-grunt-tasks": "^0.6.0",
"grunt-compare-size": "^0.4.0",
"gzip-js": "^0.3.2",
"grunt-contrib-concat": "^0.5.0",
"phantomjs": "^1.9.7-15",
"chai": "^1.9.1",
"grunt-contrib-connect": "^0.8.0",
"grunt-mocha-phantomjs": "^0.6.0",
"mocha": "^1.21.4",
"grunt-jscs-checker": "0.4.4"
}
}