Module

x/denoify/package.json

🦕For NPM module authors that would like to support Deno but do not want to write and maintain a port.
Go to Latest
File
{ "name": "denoify", "version": "0.14.1", "homepage": "https://denoify.land", "description": "For NPM module authors that would like to support Deno but do not want to write and maintain a port.", "main": "dist/lib/index.js", "types": "dist/lib/index.d.ts", "repository": { "type": "git", "url": "git://github.com/garronej/denoify" }, "scripts": { "grant-exec-perms": "chmod +x ./dist/bin/*.js", "build": "tsc && npm run grant-exec-perms", "test": "node ./dist/test", "_format": "prettier '**/*.{ts,tsx,json,md}'", "format": "yarn _format --write", "format:check": "yarn _format --list-different", "link_in_test_app": "node dist/bin/link_in_test_app.js" }, "bin": { "denoify": "dist/bin/denoify.js", "enable_short_npm_import_path": "dist/bin/enableShortNpmImportPath.js", "remove_deno_dist_from_gitignore": "dist/bin/removeDenoDistFromGitignore.js" }, "lint-staged": { "*.{ts,tsx,json,md}": [ "prettier --write" ] }, "husky": { "hooks": { "pre-commit": "lint-staged -v" } }, "author": "u/garronej", "license": "MIT", "dependencies": { "@octokit/rest": "^18.0.0", "@types/comment-json": "^1.1.1", "commander": "^4.1.1", "comment-json": "^3.0.2", "tsafe": "^0.10.1", "get-github-default-branch-name": "^0.0.4", "gitignore-parser": "0.0.2", "glob": "^7.1.6", "node-fetch": "^2.6.0", "path-depth": "^1.0.0", "scripting-tools": "^0.19.13", "url-join": "^4.0.1", "evt": "^2.3.1" }, "keywords": [ "deno", "transpile", "cjs", "CommonJs" ], "files": [ "known-ports.jsonc", "src/", "!src/test/", "dist/", "!dist/test/" ], "devDependencies": { "@types/glob": "^7.1.1", "@types/js-yaml": "^3.12.3", "@types/node": "^10.0.0", "@types/node-fetch": "^2.5.6", "@types/url-join": "^4.0.0", "js-yaml": "^3.13.1", "prettier": "^2.3.0", "lint-staged": "^11.0.0", "husky": "^4.3.8", "typescript": "^4.7.3" }}