-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "function-location",
"version": "1.0.0",
"description": "Retrieve `[[FunctionLocation]]` from V8.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"exports": {
".": "./dist/lib/index.js"
},
"files": [
"dist/lib/index.js",
"dist/lib/index.d.ts",
"dist/lib/loader.js",
"dist/lib/loader.d.ts",
"dist/config/package-layout.json"
],
"scripts": {
"build:all": "npm run build && npm run build:native",
"build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && tsc",
"build:native": "node ./scripts/build-native.js",
"build:prebuilds": "node ./scripts/prebuild.js",
"benchmark": "node ./scripts/benchmark.js",
"verify:prebuild": "node ./scripts/verify-prebuild.js",
"verify:pack": "node ./scripts/verify-pack-tarball.js",
"prepack": "node ./scripts/run-prepack.js",
"test": "node ./scripts/run-tests.js"
},
"keywords": [
"[[FunctionLocation]]",
"function",
"class",
"path",
"location",
"locate"
],
"author": "Nhahan",
"license": "MIT",
"homepage": "https://github.com/Nhahan/function-location",
"repository": {
"type": "git",
"url": "git+https://github.com/Nhahan/function-location.git"
},
"engines": {
"node": ">=16 <25"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"babel-jest": "^29.6.4",
"jest": "^29.6.2",
"node-gyp": "^12.2.0",
"prebuildify": "^6.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"node-gyp-build": "^4.8.4"
},
"optionalDependencies": {
"function-location-darwin-arm64": "1.0.0",
"function-location-darwin-x64": "1.0.0",
"function-location-linux-x64": "1.0.0",
"function-location-win32-x64": "1.0.0"
}
}