-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
28 lines (28 loc) · 927 Bytes
/
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
{
"name": "webaudiosequencer",
"version": "1.0.0",
"description": "Make music with sounds from around the web using HTML5 and the Web Audio API.",
"repository": {
"type": "git",
"url": "git+https://github.com/stuartkeith/webaudiosequencer.git"
},
"author": "Stuart Keith",
"license": "MIT",
"bugs": {
"url": "https://github.com/stuartkeith/webaudiosequencer/issues"
},
"homepage": "https://github.com/stuartkeith/webaudiosequencer#readme",
"devDependencies": {
"fs-extra": "^7.0.1",
"http-server": "^0.11.1",
"node-sass": "^4.11.0",
"requirejs": "^2.3.2",
"spritesmith": "^3.3.1"
},
"scripts": {
"sprites": "node tasks/sprites",
"styles": "node-sass source/scss/main.scss source/css/main.css --style compressed --include-path source/scss/alertify",
"start": "npm run sprites && npm run styles && http-server ./source",
"build": "node tasks/build"
}
}