-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "xapi-inspector",
"version": "0.2.0",
"license": "ISC",
"author": {
"name": "Vates SAS",
"url": "https://vates.fr"
},
"bin": {
"xapi-inspector": "cli.mjs"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@xen-orchestra/self-signed": "^0.1.3",
"app-conf": "^2.3.0",
"chalk": "^5.2.0",
"event-to-promise": "^0.8.0",
"exec-promise": "^0.7.0",
"get-stream": "^6.0.1",
"http-server-plus": "^1.0.0",
"json-rpc-protocol": "^0.13.1",
"minimist": "^1.2.0",
"xmlrpc": "^1.3.2"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4"
},
"scripts": {
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{{,c,m}j,t}s{,x}": "eslint --ignore-pattern '!*'"
}
}