-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "web-audio-school",
"version": "1.3.1",
"description": "An intro to the Web Audio API by a series of self-guided workshops.",
"main": "index.js",
"bin": {
"web-audio-school": "run.js"
},
"standard": {
"global": [
"AudioContext",
"XMLHttpRequest"
],
"ignore": [
"lessons/**/start.js"
]
},
"dependencies": {
"beefy": "^2.1.4",
"brace": "^0.5.1",
"browserify": "^9.0.8",
"highlight.js": "^8.5.0",
"hyperscript": "^1.4.6",
"insert-css": "^0.2.0",
"markdown-it": "^4.1.0",
"markdown-it-for-inline": "^0.1.0",
"micro-css": "^0.5.0",
"observ": "^0.2.0",
"observ-struct": "^6.0.0",
"opn": "^5.1.0",
"stereo-panner-node": "~0.2.0",
"through2": "^0.6.5"
},
"devDependencies": {
"buildbranch": "0.0.3",
"standard": "^4.5.2",
"uglify-js": "^2.4.23"
},
"scripts": {
"test": "standard",
"start": "beefy browser-entry.js:bundle.js --index=resources/index.js --cwd resources -- -t [ ./lib/evalify -f lessons/index.js -f styles/index.js ]",
"clean-static": "rm -rf build",
"build-static": "npm run clean-static && mkdir build && cp -r resources/* build/ && browserify browser-entry -t [ ./lib/evalify -f lessons/index.js -f styles/index.js ] | uglifyjs > build/bundle.js",
"deploy": "standard && npm run build-static && buildbranch gh-pages build"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/mmckegg/web-audio-school.git"
},
"author": "Matt McKegg",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmckegg/web-audio-school/issues"
},
"homepage": "https://github.com/mmckegg/web-audio-school"
}