123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- {
- "private": true,
- "name": "uppy-build",
- "version": "0.0.0",
- "description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
- "lint-staged": {
- "*.js": "eslint"
- },
- "pre-commit": "lint:staged",
- "license": "MIT",
- "devDependencies": {
- "@types/react": "^16.8.10",
- "aliasify": "^2.1.0",
- "autoprefixer": "^7.2.6",
- "babel-cli": "^6.26.0",
- "babel-core": "^6.26.3",
- "babel-jest": "^23.6.0",
- "babel-plugin-transform-object-assign": "^6.22.0",
- "babel-plugin-transform-object-rest-spread": "^6.26.0",
- "babel-plugin-transform-proto-to-assign": "^6.26.0",
- "babel-plugin-transform-react-jsx": "^6.24.1",
- "babel-polyfill": "^6.26.0",
- "babel-preset-env": "^1.7.0",
- "babel-register": "^6.26.0",
- "babelify": "^8.0.0",
- "browser-resolve": "^1.11.3",
- "browser-sync": "^2.26.3",
- "browserify": "^16.2.3",
- "chai": "^4.2.0",
- "chalk": "^2.4.2",
- "cssnano": "^3.10.0",
- "disc": "^1.3.3",
- "enzyme": "^3.9.0",
- "enzyme-adapter-react-16": "^1.11.2",
- "eslint": "^3.19.0",
- "eslint-config-standard": "^10.2.1",
- "eslint-config-standard-preact": "^1.1.6",
- "eslint-plugin-compat": "^2.7.0",
- "eslint-plugin-import": "^2.16.0",
- "eslint-plugin-jest": "^21.27.2",
- "eslint-plugin-node": "^4.2.3",
- "eslint-plugin-promise": "^3.8.0",
- "eslint-plugin-standard": "^3.1.0",
- "exorcist": "^1.0.1",
- "fakefile": "0.0.9",
- "flat": "^4.1.0",
- "github-contributors-list": "1.2.3",
- "glob": "^7.1.3",
- "gzip-size": "^5.0.0",
- "isomorphic-fetch": "2.2.1",
- "jest": "^23.6.0",
- "json3": "^3.3.2",
- "lerna": "^3.13.1",
- "lint-staged": "^6.1.1",
- "minify-stream": "^1.2.0",
- "mkdirp": "0.5.1",
- "multi-glob": "^1.0.2",
- "nock": "^9.6.1",
- "node-sass": "^4.11.0",
- "npm-auth-to-token": "^1.0.0",
- "npm-run-all": "^4.1.5",
- "onchange": "^4.1.0",
- "postcss": "^6.0.23",
- "postcss-safe-important": "^1.1.0",
- "pre-commit": "^1.2.2",
- "pretty-bytes": "^5.1.0",
- "react": "^16.8.6",
- "react-dom": "^16.8.6",
- "redux": "^4.0.1",
- "replace-x": "^1.5.0",
- "stringify-object": "^3.3.0",
- "temp-write": "^3.4.0",
- "tinyify": "^2.5.0",
- "touch": "^3.1.0",
- "tsify": "^4.0.1",
- "typescript": "^2.9.2",
- "verdaccio": "^3.11.6",
- "watchify": "^3.11.1",
- "wdio-mocha-framework": "^0.6.4",
- "wdio-sauce-service": "^0.4.14",
- "wdio-static-server-service": "^1.0.1",
- "webdriverio": "^4.14.4"
- },
- "scripts": {
- "bootstrap": "lerna bootstrap",
- "build:bundle": "node ./bin/build-bundle.js",
- "build:clean": "rm -rf packages/*/lib packages/@uppy/*/lib packages/*/dist packages/@uppy/*/dist",
- "build:companion": "cd ./packages/@uppy/companion && npm run build",
- "build:css": "node ./bin/build-css.js",
- "build:js": "npm-run-all build:lib build:companion build:locale-pack build:bundle",
- "build:lib": "node ./bin/build-lib.js",
- "build:locale-pack": "node ./bin/locale-packs.js build",
- "build": "npm-run-all --parallel build:js build:css --serial size",
- "contributors:fetch": "githubcontrib --owner transloadit --repo uppy --cols 6 $([ \"${GITHUB_TOKEN:-}\" == \"\" ] && echo \"\" || echo \"--authToken ${GITHUB_TOKEN}\") --showlogin true --sortOrder desc",
- "contributors:save": "replace-x -m '<!--contributors-->[\\s\\S]+<!--/contributors-->' \"<!--contributors-->\n## Contributors\n\n$(npm run --silent contributors:fetch)\n<!--/contributors-->\" README.md",
- "dev:browsersync": "browser-sync start --no-open --no-ghost-mode false --server examples/dev --port 3452 --serveStatic packages/uppy/dist --files \"examples/dev/bundle.js, packages/uppy/dist/uppy.min.css, packages/uppy/lib/**/*\"",
- "dev:watch-sandbox": "cd examples/dev && npm run watch:sandbox",
- "dev:with-companion": "npm-run-all --parallel start:companion dev:watch-sandbox watch:js:lib watch:css dev:browsersync",
- "dev": "npm-run-all --parallel dev:watch-sandbox watch:js:lib watch:css dev:browsersync",
- "lint:fix": "npm run lint -- --fix",
- "lint:staged": "lint-staged",
- "lint": "eslint . --cache",
- "release": "./bin/release",
- "size": "echo 'JS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.js | gzip | wc -c && echo 'CSS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.css | gzip | wc -c",
- "start:companion": "./bin/companion",
- "start": "npm-run-all --parallel watch start:companion web:start",
- "test:companion": "cd ./packages/@uppy/companion && npm run test",
- "test:endtoend:build-ci": "./bin/endtoend-build-ci",
- "test:endtoend:build": "./bin/endtoend-build",
- "test:endtoend:local": "npm run test:endtoend:build && wdio test/endtoend/wdio.local.conf.js",
- "test:endtoend:prepare-ci": "npm-run-all --parallel --race test:endtoend:registry test:endtoend:build-ci",
- "test:endtoend:registry": "verdaccio --listen 4002 --config test/endtoend/verdaccio.yaml",
- "test:endtoend": "npm run test:endtoend:prepare-ci && wdio test/endtoend/wdio.remote.conf.js",
- "test:locale-packs": "node ./bin/locale-packs.js test",
- "test:type": "tsc -p .",
- "test:unit": "npm run build:lib && jest",
- "test:watch": "jest --watch",
- "test": "npm-run-all lint test:locale-packs test:unit test:type test:companion",
- "uploadcdn": "bin/upload-to-cdn.sh",
- "version": "./bin/sync-version-numbers",
- "watch:css": "onchange 'packages/**/*.scss' --initial --verbose -- npm run build:css",
- "watch:js:bundle": "onchange 'packages/{@uppy/,}*/src/**/*.js' --initial --verbose -- npm run build:bundle",
- "watch:js:lib": "onchange 'packages/{@uppy/,}*/src/**/*.js' --initial --verbose -- npm run build:lib",
- "watch": "npm-run-all --parallel watch:**",
- "web:build-examples": "cd website && node build-examples.js",
- "web:build": "npm-run-all web:inject-bundles-misc web:generate web:build-examples web:inject-frontpagecodesample",
- "web:bundle-watch-inject": "onchange 'packages/uppy/dist/**/*.css' 'packages/uppy/dist/**/*.js' --initial --verbose -- npm run web:inject-bundles-misc",
- "web:clean": "cd website && touch db.json && ./node_modules/.bin/hexo clean",
- "web:deploy": "npm-run-all web:clean web:inject-disc web:build && ./bin/web-deploy",
- "web:generate": "cd website && touch db.json && ./node_modules/.bin/hexo generate",
- "web:inject-bundles-misc": "cd website && node inject.js",
- "web:inject-disc": "node ./bin/disc.js",
- "web:inject-frontpagecodesample": "npm run web:generate && cp -f website/public/frontpage-code-sample.html website/themes/uppy/layout/partials/frontpage-code-sample.html && touch website/themes/uppy/layout/index.ejs",
- "web:install": "cd website && npm install",
- "web:start": "npm-run-all build:lib --parallel watch:css web:watch-examples web:bundle-watch-inject web:watch",
- "web:watch-examples": "cd website && node build-examples.js watch",
- "web:watch": "cd website && touch db.json &&./node_modules/.bin/hexo server"
- },
- "jest": {
- "automock": false,
- "collectCoverage": true,
- "collectCoverageFrom": [
- "packages/**/src/**"
- ],
- "testMatch": [
- "**/packages/**/*.test.js"
- ]
- },
- "dependencies": {}
- }
|