-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "stream-playground",
"version": "0.0.0",
"description": "playground for learning node streams with audio and virtual dom",
"main": "index.js",
"scripts": {
"test": "tape test.js",
"start": "budo play:bundle.js -d play --live -- -d",
"bundle": "browserify play -g envify -g uglifyify",
"build": "npm run --silent bundle -- -o play/bundle.js",
"disc": "npm run --silent bundle -- --full-paths | discify --open",
"push": "gh-pages -d play",
"deploy": "npm-run-all -s build push"
},
"browserify": {
"transform": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-academy-challenges/stream-playground.git"
},
"keywords": [],
"author": "Mikey <michael.williams@enspiral.com> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dev-academy-challenges/stream-playground/issues"
},
"homepage": "https://github.com/dev-academy-challenges/stream-playground#readme",
"devDependencies": {
"browserify": "^13.0.0",
"budo": "^8.1.0",
"disc": "^1.3.2",
"envify": "^3.4.0",
"gh-pages": "^0.11.0",
"npm-run-all": "^1.6.0",
"tape": "^4.5.1",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
},
"dependencies": {
"mississippi": "^1.2.0",
"read-audio": "^7.0.1",
"vdom-render-stream": "^1.0.2"
}
}