mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-31 20:43:43 +00:00
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "@deno/shim-deno",
|
|
"version": "0.12.0",
|
|
"description": "Deno namespace shim for Node.js",
|
|
"keywords": [
|
|
"deno namespace",
|
|
"deno",
|
|
"polyfill",
|
|
"ponyfill",
|
|
"shim"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./lib/shim-deno.lib.d.ts",
|
|
"author": "Thomas Rory Gummerson <thomas@gummerson.no> (https://trgwii.no/)",
|
|
"contributors": [
|
|
"Wojciech Pawlik <woj.pawlik@gmail.com>",
|
|
"Muthu Kumar <muthukumar@thefeathers.in> (https://mkr.pw)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/denoland/node_deno_shims.git"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./test-internals": "./dist/deno/internal/test.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib/shim-deno.lib.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run denolib && tsc && npm run generate-declaration-file",
|
|
"prepublishOnly": "npm run build",
|
|
"clean": "git clean -fXde !node_modules/",
|
|
"test": "node --loader=ts-node/esm tools/run_tests.mjs",
|
|
"denolib": "deno run --allow-run --allow-write=src/deno tools/denolib.ts",
|
|
"generate-declaration-file": "deno run --allow-write=lib --allow-read tools/generateDeclarationFile.ts",
|
|
"update-progress": "deno run --allow-read tools/missing.ts > PROGRESS.md"
|
|
},
|
|
"dependencies": {
|
|
"@deno/shim-deno-test": "^0.4.0",
|
|
"which": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.4.13",
|
|
"@types/which": "^2.0.1",
|
|
"ts-node": "^10.8.0",
|
|
"typescript": "^4.7.2"
|
|
}
|
|
}
|