-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "inspect-promise",
"version": "2.0.7",
"description": "Reimplements Node's `util.getPromiseDetails()`",
"author": "Oscar Lee-Vermeren <[email protected]>",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./extend": "./dist/extend.js"
},
"files": [
"dist",
"src",
"binding.gyp"
],
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"clean": "node scripts/clean.js",
"build": "node-pre-gyp configure build package && tsc --build",
"build:from-source": "node-pre-gyp install --fallback-to-build --build-from-source",
"test": "node-pre-gyp configure build && vitest run ./lib/index.test.ts",
"prepack": "yarn build",
"prettier": "prettier -w lib"
},
"repository": {
"type": "git",
"url": "https://github.com/xiBread/inspect-promise.git"
},
"license": "MIT",
"keywords": [
"promise",
"inspect",
"util",
"sync",
"async",
"await",
"node",
"node-gyp"
],
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"useTabs": true,
"overrides": [
{
"files": [
"*.yml"
],
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
},
"binary": {
"module_name": "inspectPromise",
"module_path": "./prebuild/{module_name}-{node_abi}-{platform}-{arch}/",
"host": "https://github.com/xiBread/inspect-promise/releases/download/",
"remote_path": "{version}",
"package_name": "{module_name}-{version}-{node_abi}-{platform}-{arch}.tar.gz",
"pkg_path": "."
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@types/node": "^20.11.24",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}