forked from AsaiKen/libxmljs2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "libxmljs2",
"author": "marudor",
"contributors": [
"Jeff Smick",
"Marco Rogers"
],
"packageManager": "pnpm@8.10.2+sha256.487609e857f1c11780cc98dd0bfe4c8a8b11c7f23bc3a4493ac7d263d6fb6c8c",
"binary": {
"module_name": "xmljs",
"module_path": "./build/Release/",
"host": "https://github.com",
"remote_path": "./marudor/libxmljs2/releases/download/v{version}/",
"package_name": "{node_abi}-{platform}-{arch}-{libc}.tar.gz"
},
"description": "libxml bindings for v8 javascript engine",
"version": "0.34.0",
"scripts": {
"build": "node-gyp rebuild",
"prebuild": "prebuild",
"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.19.0",
"node-gyp": "^10.1.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/node": "^20.12.8",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prebuild": "^13.0.0",
"prettier": "^3.2.5",
"tsd": "^0.31.0",
"typescript": "^5.4.5"
}
}