forked from ngrok/ngrok-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.51 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@ngrok/ngrok",
"version": "1.5.1",
"main": "index.js",
"types": "index.d.ts",
"files": [
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"index.js",
"index.d.ts",
"package.json"
],
"napi": {
"name": "ngrok",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"universal-apple-darwin"
]
}
},
"license": "(MIT OR Apache-2.0)",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@napi-rs/cli": "^2.18.4",
"@types/node": "^22.13.0",
"ava": "^6.2.0",
"axios": "^1.8.3",
"axios-retry": "^4.5.0",
"babel-jest": "^29.7.0",
"expect": "^29.7.0",
"express": "^4.21.2",
"jest": "^30.0.0-alpha.6",
"prettier": "^3.5.3",
"typedoc": "^0.28.0",
"typescript": "^5.8.2"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js gen.js --dts gen.d.ts --pipe 'node post-build.js trailer index'",
"build:debug": "napi build --platform",
"clean": "rm -rf node_modules/ target/",
"docs": "mv trailer.d.ts trailer.d.hidden; mv examples .examples; npx typedoc index.d.ts --navigation.includeGroups; mv .examples examples; mv trailer.d.hidden trailer.d.ts",
"prepublishOnly": "napi prepublish -t npm",
"prettier": "prettier --write .",
"test": "jest",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "yarn@3.3.1",
"description": "The ngrok agent in library form, suitable for integrating directly into your NodeJS application.",
"keywords": [
"ngrok",
"nodejs",
"ingress",
"networking"
],
"homepage": "https://ngrok.github.io/ngrok-javascript/",
"repository": {
"type": "git",
"url": "https://github.com/ngrok/ngrok-javascript.git"
},
"jest": {
"testTimeout": 30000,
"testMatch": [
"**/__test__/**/*.mjs"
],
"testPathIgnorePatterns": [
"/__test__/retry-config.mjs$"
],
"transform": {
"^.+\\.(mjs)$": "babel-jest"
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}