Add nix runtime testing and pre-installing runtimes

This commit is contained in:
Thomas Hobson 2022-01-30 22:29:21 +13:00
parent 564da5a7eb
commit e022e34a37
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
11 changed files with 306 additions and 176 deletions

View file

@ -2,7 +2,7 @@
"name": "piston-api",
"version": "4.0.0",
"description": "API for piston - a high performance code execution engine",
"main": "src/pistond.js",
"main": "src/bin/pistond.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
@ -23,6 +23,8 @@
"prettier": "2.2.1"
},
"bin": {
"pistond": "./src/pistond.js"
"pistond": "./src/bin/pistond.js",
"piston-install": "./src/bin/install.js",
"piston-test": "./src/bin/test.js"
}
}