-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "libxmljs2",
"author": "marudor",
"contributors": [
"Jeff Smick",
"Marco Rogers"
],
"packageManager": "[email protected]+sha256.487609e857f1c11780cc98dd0bfe4c8a8b11c7f23bc3a4493ac7d263d6fb6c8c",
"description": "libxml bindings for v8 javascript engine",
"version": "0.35.0",
"scripts": {
"build": "node-gyp rebuild",
"prebuild": "prebuild",
"prebuild:macArm": "prebuild -t 108 -t 115 -t 120 -t 127",
"install": "prebuild-install || node-gyp rebuild",
"test": "node --expose_gc ./node_modules/jest/bin/jest.js",
"tsd": "tsd"
},
"repository": {
"type": "git",
"url": "http://github.com/marudor/libxmljs2.git"
},
"bugs": {
"url": "http://github.com/marudor/libxmljs2/issues"
},
"main": "./index",
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"index.d.ts",
"src",
"lib",
"vendor",
"binding.gyp",
"Makefile"
],
"dependencies": {
"bindings": "~1.5.0",
"nan": "~2.20.0",
"node-gyp": "^10.2.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/node": "^20.14.12",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prebuild": "^13.0.1",
"prettier": "^3.3.3",
"tsd": "^0.31.1",
"typescript": "^5.5.4"
}
}