piston/api/package.json

33 lines
893 B
JSON
Raw Normal View History

2021-02-20 15:13:56 +01:00
{
2021-05-08 02:30:40 +02:00
"name": "piston-api",
"version": "4.0.0",
2021-05-08 02:30:40 +02:00
"description": "API for piston - a high performance code execution engine",
"main": "src/bin/pistond.js",
2021-05-08 02:30:40 +02:00
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-ws": "^5.0.2",
2021-05-08 02:30:40 +02:00
"logplease": "^1.2.15",
2022-05-02 12:02:46 +02:00
"nocamel": "HexF/nocamel#patch-1",
2021-05-08 02:30:40 +02:00
"node-fetch": "^2.6.1",
"uuid": "^8.3.2",
2022-05-02 12:02:46 +02:00
"waitpid": "HexF/node-waitpid"
2021-05-08 02:30:40 +02:00
},
"license": "MIT",
"scripts": {
"dev": "nodemon .",
"lint": "prettier . --write",
"prepack": "yarn2nix > yarn.nix"
},
"devDependencies": {
"node2nix": "^1.6.0",
"nodemon": "^2.0.15",
"prettier": "2.2.1"
},
"bin": {
"pistond": "./src/bin/pistond.js",
"piston-install": "./src/bin/install.js",
"piston-test": "./src/bin/test.js"
}
2021-02-20 15:13:56 +01:00
}