-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
55
56
{
"name": "@deno/shim-deno",
"version": "0.19.2",
"description": "Deno namespace shim for Node.js",
"keywords": [
"deno namespace",
"deno",
"polyfill",
"ponyfill",
"shim"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"author": "Thomas Rory Gummerson <[email protected]> (https://trgwii.no/)",
"contributors": [
"Wojciech Pawlik <[email protected]>",
"Muthu Kumar <[email protected]> (https://mkr.pw)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denoland/node_deno_shims.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./test-internals": {
"import": "./dist/test-internals.mjs",
"require": "./dist/test-internals.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run denolib && tsc && tsc --build tsconfig.esm.json && npm run generate-declaration-file && deno run -A tools/bundle.ts",
"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,dist --allow-read tools/generateDeclarationFile.ts",
"update-progress": "deno run --allow-read tools/missing.ts > PROGRESS.md"
},
"dependencies": {
"@deno/shim-deno-test": "^0.5.0",
"which": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/which": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}