├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin ├── npm2PKGBUILD ├── npm2archinstall ├── npm2archpkg └── npm2aurball ├── index.js ├── lib ├── createPkg.js ├── fetchJSON.js ├── handleError.js └── npm2PKGBUILD.js ├── package.json └── test └── npm2arch.js /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | test/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/README.md -------------------------------------------------------------------------------- /bin/npm2PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/bin/npm2PKGBUILD -------------------------------------------------------------------------------- /bin/npm2archinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/bin/npm2archinstall -------------------------------------------------------------------------------- /bin/npm2archpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/bin/npm2archpkg -------------------------------------------------------------------------------- /bin/npm2aurball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/bin/npm2aurball -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/index.js -------------------------------------------------------------------------------- /lib/createPkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/lib/createPkg.js -------------------------------------------------------------------------------- /lib/fetchJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/lib/fetchJSON.js -------------------------------------------------------------------------------- /lib/handleError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/lib/handleError.js -------------------------------------------------------------------------------- /lib/npm2PKGBUILD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/lib/npm2PKGBUILD.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/package.json -------------------------------------------------------------------------------- /test/npm2arch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simon04/npm2arch/HEAD/test/npm2arch.js --------------------------------------------------------------------------------