{ "name": "uppy", "version": "0.0.3", "description": "Almost as cute as a Puppy :dog:", "main": "src/index.js", "scripts": { "start": "parallelshell 'npm run watch' 'npm run start:server' 'npm run web:preview'", "start:server": "uppy-server --port 3002", "clean": "rm -rf lib && rm -rf dist", "docs": "cd website && documentation readme ../src/index.js --readme-file=src/api/docs.md --section 'Uppy Core & Plugins' -q --github -c doc-order.json", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "npm run lint && npm run test:unit", "test:acceptance": "node test/multipart.spec.js", "test:unit": "node test/index.js", "build": "npm run build:lib && npm run build:bundle && npm run build:bundle:min && npm run build:css", "build:js": "npm run build:lib && npm run build:bundle && npm run build:bundle:min", "build:css": "bin/build-css", "build:lib": "babel src -d lib --stage 0", "build:bundle:fullpath": "env OUT=uppy-fp.js ./bin/build-bundle --full-paths", "build:bundle:min": "./bin/build-bundle", "build:bundle": "./bin/build-bundle && ./bin/build-bundle-locales", "release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish", "release:major": "env SEMANTIC=major npm run release", "release:minor": "env SEMANTIC=minor npm run release", "release:patch": "env SEMANTIC=patch npm run release", "watch": "parallelshell 'npm run watch:js' 'npm run watch:css' && node website/update.js", "watch:fast": "parallelshell 'npm run watch:css' 'npm run web:preview'", "watch:js": "nodemon --watch src --ext js -x 'npm run build:bundle && node website/update.js'", "watch:css": "nodemon --watch src --ext scss -x 'npm run build:css && node website/update.js'", "web": "npm run web:install && npm run web:clean && npm run web:build", "web:kill": "killall -9 node; lsof -n -i4TCP:4000 | awk '/LISTEN/ {print $2}' |xargs kill -9", "web:preview": "cd website && parallelshell 'node build-examples.js watch' './node_modules/.bin/hexo server'", "web:build": "cd website && node update.js && ./node_modules/.bin/hexo generate --silent && node build-examples.js", "web:clean": "cd website && ./node_modules/.bin/hexo clean", "web:deploy": "npm run web:install && npm run web:disc && npm run docs && npm run web:build && ./bin/web-deploy", "web:disc": "npm run build:bundle:fullpath && discify dist/uppy-fp.js --output website/src/_disc.html && echo '---\nlayout: false\n---\n' |cat - website/src/_disc.html > website/src/disc.html && rm website/src/_disc.html", "web:install": "cd website && npm install", "web:update:frontpage:code:sample": "cd website && ./node_modules/.bin/hexo generate && cp -f public/frontpage-code-sample.html ./themes/uppy/layout/partials/frontpage-code-sample.html" }, "repository": { "type": "git", "url": "git+https://github.com/transloadit/uppy.git" }, "author": "", "license": "ISC", "bugs": { "url": "https://github.com/transloadit/uppy/issues" }, "homepage": "https://github.com/transloadit/uppy#readme", "devDependencies": { "babel": "5.8.34", "babel-eslint": "4.1.5", "babelify": "6.4.0", "browser-sync": "2.10.0", "browserify": "12.0.1", "chalk": "1.1.1", "disc": "1.3.2", "eslint": "2.4.0", "eslint-config-standard": "5.1.0", "eslint-plugin-promise": "1.1.0", "eslint-plugin-standard": "1.3.2", "fakefile": "0.0.5", "multi-glob": "1.0.1", "node-notifier": "4.4.0", "node-sass": "3.4.2", "nodemon": "1.8.1", "parallelshell": "2.0.0", "phantomjs": "1.9.18", "selenium-webdriver": "^2.52.0", "tape": "4.4.0", "uppy-server": "0.0.1", "watchify": "3.6.1", "zuul": "3.7.2" }, "dependencies": { "drag-drop": "2.11.0", "tus-js-client": "1.1.3", "yo-yo": "1.1.1" } }