forked from nypublicradio/audiogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "audiogram",
"version": "0.9.5",
"description": "Turn audio into a shareable video.",
"main": "index.js",
"scripts": {
"start": "npm run postinstall && bin/server",
"worker": "bin/worker",
"postinstall": "mkdir -p editor/js && browserify client/index.js > editor/js/bundle.js",
"rebuild": "npm run postinstall",
"watch": "mkdir -p editor/js && watchify client/index.js -o editor/js/bundle.js",
"debug": "npm run postinstall && DEBUG=1 bin/server",
"test": "rm -rf test/tmp && tape 'test/**/*-test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/nypublicradio/audiogram.git"
},
"keywords": [],
"author": {
"name": "Noah Veltman",
"url": "https://twitter.com/veltman"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.2.39",
"browserify": "^13.0.0",
"canvas": "git+https://github.com/chearon/node-canvas.git#12971f64a66b",
"compression": "^1.6.1",
"d3": "4.10.0",
"dotenv": "^2.0.0",
"express": "^4.13.3",
"jquery": "^2.2.1",
"mkdirp": "^0.5.1",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"node-ffprobe": "^1.2.2",
"redis": "^2.4.2",
"rimraf": "^2.5.0",
"smartquotes": "^1.0.0",
"underscore": "^1.8.3",
"uuid": "^3.0.1",
"webaudio-peaks": "0.0.5",
"winston": "^2.2.0"
},
"devDependencies": {
"supertest": "^1.2.0",
"tape": "^4.6.0",
"watchify": "^3.7.0"
}
}