├── .babelrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .vscode └── launch.json ├── README.md ├── nodemon.json ├── package.json ├── screenshot.png └── src ├── config.js ├── index.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | puppeteer_download_host = https://npm.taobao.org/mirrors 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/README.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydaoyuan/jd-invoice/HEAD/src/utils.js --------------------------------------------------------------------------------