31 lines
877 B
JSON
31 lines
877 B
JSON
{
|
|
"name": "piston-api",
|
|
"version": "4.0.0",
|
|
"description": "API for piston - a high performance code execution engine",
|
|
"main": "src/bin/pistond.js",
|
|
"dependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"express": "^4.17.1",
|
|
"express-ws": "^5.0.2",
|
|
"logplease": "^1.2.15",
|
|
"node-fetch": "^2.6.1",
|
|
"uuid": "^8.3.2",
|
|
"nocamel": "git://github.com/HexF/nocamel.git#patch-1",
|
|
"waitpid": "git://github.com/HexF/node-waitpid.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"lint": "prettier . --write",
|
|
"prepack": "yarn2nix > yarn.nix"
|
|
},
|
|
"devDependencies": {
|
|
"node2nix": "^1.6.0",
|
|
"prettier": "2.2.1"
|
|
},
|
|
"bin": {
|
|
"pistond": "./src/bin/pistond.js",
|
|
"piston-install": "./src/bin/install.js",
|
|
"piston-test": "./src/bin/test.js"
|
|
}
|
|
}
|