-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "deno2node",
"version": "1.14.0",
"description": "`tsc` replacement for transpiling Deno libraries to run on Node.js.",
"type": "module",
"bin": {
"deno2node": "lib/cli.js"
},
"main": "./lib/mod.js",
"exports": "./lib/mod.js",
"typings": "./lib/mod.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib/",
"tsconfig.json",
"!lib/**/*.test.*"
],
"scripts": {
"fmt": "deno fmt",
"lint": "deno lint",
"prepare": "src/cli.ts",
"postprepare": "node --test lib/",
"test": "deno test --allow-read=.",
"dependencies": "scripts/pretest.ts",
"clean": "git clean -fXde !node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wojpawlik/deno2node.git"
},
"homepage": "https://t.me/fromdeno",
"keywords": [
"typescript",
"transpile",
"ts-morph",
"dnt",
"deno"
],
"author": "Wojciech Pawlik <woj.pawlik@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=14.13.1"
},
"dependencies": {
"ts-morph": "^24.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"deno-bin": "~2.0.2",
"fast-check": "^3.10.0"
}
}