12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "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"
- }
- }
|