├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── License ├── README.md ├── package.json ├── server.conf └── src └── index.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/.travis.yml -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/package.json -------------------------------------------------------------------------------- /server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/server.conf -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuki-xin/picgo-plugin-web-uploader/HEAD/src/index.js --------------------------------------------------------------------------------