un-inception/clients/javascript/async/package.json

46 lines
1.2 KiB
JSON

{
"name": "un-async",
"version": "4.2.8",
"description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages",
"main": "src/un_async.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint src/ tests/ examples/",
"format": "prettier --write src/ tests/ examples/"
},
"keywords": [
"unsandbox",
"code-execution",
"sandbox",
"async",
"await",
"promise"
],
"author": "",
"license": "Unlicense",
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.57.0",
"prettier": "^3.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"moduleFileExtensions": ["js", "mjs"],
"testMatch": ["**/tests/**/*.test.js", "**/tests/**/*.test.mjs"]
},
"files": [
"src/",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/unsandbox/un-inception"
}
}