mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
54 lines
1.8 KiB
JSON
54 lines
1.8 KiB
JSON
{
|
|
"name": "uppy",
|
|
"version": "0.0.1",
|
|
"description": "Almost as cute as a Puppy :dog:",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && npm run build:css",
|
|
"build:css": "bin/build-css",
|
|
"build:lib": "babel src -d lib --stage 0",
|
|
"build:umd": "./bin/build-umd",
|
|
"build:umd:min": "./bin/build-umd",
|
|
"build:examples": "examples/buildAll node_modules/.bin/browserify",
|
|
"clean": "rm -rf lib && rm -rf dist",
|
|
"lint": "eslint src/**/*.js",
|
|
"dev": "npm run watch & npm run server",
|
|
"dev:examples": "npm run watch:examples & npm run server",
|
|
"server": "browser-sync start --config .browsersync.js",
|
|
"test": "bin/test",
|
|
"test:phantom": "zuul test/spec/upload.js --phantom",
|
|
"watch": "npm run watch:css & npm run watch:js",
|
|
"watch:css": "nodemon -e src/scss -x \"npm run build:css\"",
|
|
"watch:examples": "npm run build:lib && (examples/buildAll node_modules/.bin/watchify & npm run watch:js)",
|
|
"watch:js": "nodemon --watch src -e js --ignore src/scss -x \"npm run build:lib\""
|
|
},
|
|
"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",
|
|
"eslint": "^1.9.0",
|
|
"http-server": "^0.8.5",
|
|
"node-sass": "^3.4.2",
|
|
"nodemon": "^1.8.1",
|
|
"phantomjs": "^1.9.18",
|
|
"watchify": "^3.6.1",
|
|
"zuul": "^3.7.2"
|
|
},
|
|
"dependencies": {
|
|
"async": "^1.5.0",
|
|
"superagent": "^1.5.0",
|
|
"tus-js-client": "^1.1.0"
|
|
}
|
|
}
|