-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "libvirt-node",
"version": "0.1.0",
"description": "The libvirt virtualization API node.js binding",
"main": "lib/index.js",
"scripts": {
"install": "npm run check & npm run generate",
"postinstall": "node-gyp rebuild",
"prebuild": "npm run clean && npm run generate",
"build": "node-gyp rebuild",
"test": "npx mocha",
"clean": "rimraf build & rimraf generated",
"generate": "npm run generate:all && npm run generate:format",
"generate:all": "node src/main.js",
"generate:format": "npx clang-format -i -style=Google generated/*",
"check": "npm run check:libvirt_min_ver & npm run check:libvirt_api_xml & npm run check:sanity",
"check:sanity": "node tools/sanitytest.js",
"check:libvirt_api_xml": "node tools/api_xml_files.js",
"check:libvirt_min_ver": "node tools/check_min_libvirt_ver.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RamyElkest/libvirt-node.git"
},
"keywords": [
"libvirt",
"virt",
"virtualization",
"kvm",
"qemu",
"napi"
],
"author": "Libvirt Maintainers",
"license": "LGPL-2.0+",
"bugs": {
"url": "https://github.com/RamyElkest/libvirt-node/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"homepage": "https://github.com/RamyElkest/libvirt-node#readme",
"gypfile": true,
"dependencies": {
"bindings": "^1.3.0",
"clang-format": "^1.2.4",
"debug": "^3.1.0",
"mocha": "^5.2.0",
"which": "^1.3.1",
"xml2js": "^0.4.19"
}
}