2021-02-20 15:13:56 +01:00
|
|
|
{
|
2021-05-08 02:30:40 +02:00
|
|
|
"name": "piston-api",
|
2022-01-30 06:41:24 +01:00
|
|
|
"version": "4.0.0",
|
2021-05-08 02:30:40 +02:00
|
|
|
"description": "API for piston - a high performance code execution engine",
|
2022-01-30 10:29:21 +01:00
|
|
|
"main": "src/bin/pistond.js",
|
2021-05-08 02:30:40 +02:00
|
|
|
"dependencies": {
|
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"express": "^4.17.1",
|
2021-07-16 13:10:44 +02:00
|
|
|
"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
|
|
|
},
|
2022-01-30 06:41:24 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2022-02-10 14:28:17 +01:00
|
|
|
"dev": "nodemon .",
|
2022-01-30 06:41:24 +01:00
|
|
|
"lint": "prettier . --write",
|
|
|
|
"prepack": "yarn2nix > yarn.nix"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"node2nix": "^1.6.0",
|
2022-02-10 14:28:17 +01:00
|
|
|
"nodemon": "^2.0.15",
|
2022-01-30 06:41:24 +01:00
|
|
|
"prettier": "2.2.1"
|
|
|
|
},
|
|
|
|
"bin": {
|
2022-01-30 10:29:21 +01:00
|
|
|
"pistond": "./src/bin/pistond.js",
|
|
|
|
"piston-install": "./src/bin/install.js",
|
|
|
|
"piston-test": "./src/bin/test.js"
|
2022-01-30 06:41:24 +01:00
|
|
|
}
|
2021-02-20 15:13:56 +01:00
|
|
|
}
|