├── .dockerignore ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── DEVELOPMENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── make_wheels.py ├── nodejs-cmd ├── LICENSE ├── README.md ├── nodejs_cmd.py └── setup.py ├── requirements.txt └── tests ├── test_comand_line.py ├── test_node.py ├── test_node ├── test_args.js └── test_script.js └── test_npm.py /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist 3 | -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/README.md -------------------------------------------------------------------------------- /make_wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/make_wheels.py -------------------------------------------------------------------------------- /nodejs-cmd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/nodejs-cmd/LICENSE -------------------------------------------------------------------------------- /nodejs-cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/nodejs-cmd/README.md -------------------------------------------------------------------------------- /nodejs-cmd/nodejs_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/nodejs-cmd/nodejs_cmd.py -------------------------------------------------------------------------------- /nodejs-cmd/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/nodejs-cmd/setup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | twine 3 | libarchive-c 4 | pytest -------------------------------------------------------------------------------- /tests/test_comand_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/tests/test_comand_line.py -------------------------------------------------------------------------------- /tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/tests/test_node.py -------------------------------------------------------------------------------- /tests/test_node/test_args.js: -------------------------------------------------------------------------------- 1 | console.log(process.argv[2]); -------------------------------------------------------------------------------- /tests/test_node/test_script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /tests/test_npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samwillis/nodejs-pypi/HEAD/tests/test_npm.py --------------------------------------------------------------------------------