This repository was archived by the owner on Jun 26, 2025. It is now read-only.
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
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "@loanlink-nl/libxmljs2",
"author": "LoanLink",
"contributors": [
"Jeff Smick",
"Marco Rogers",
"Max Stevens"
],
"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.32.0",
"scripts": {
"prepare": "npm run build",
"build": "node-pre-gyp install --build-from-source",
"install": "node-pre-gyp install --fallback-to-build --loglevel http",
"test": "node --expose_gc ./node_modules/jest/bin/jest.js",
"lint": "eslint index.js test",
"tsd": "tsd",
"package": "node-pre-gyp package 2>&1"
},
"repository": {
"type": "git",
"url": "http://github.com/loanlink-nl/libxmljs2.git"
},
"bugs": {
"url": "http://github.com/loanlink-nl/libxmljs2/issues"
},
"main": "./index",
"license": "MIT",
"engines": {
"node": ">=20"
},
"files": [
"index.js",
"index.d.ts",
"src",
"lib",
"vendor",
"binding.gyp",
"Makefile"
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"bindings": "~1.5.0",
"nan": "~2.17.0"
},
"devDependencies": {
"@types/node": "^18.15.13",
"eslint": "^8.38.0",
"eslint-config-marudor": "^9.1.1",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.8.7",
"tsd": "^0.28.1",
"typescript": "^5.0.4"
},
"publishConfig": {
"@loanlink-nl:registry": "https://npm.pkg.github.com/loanlink-nl"
}
}