forked from baalexander/node-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
{
"name": "xmlrpc",
"version": "1.3.2",
"engines": {
"node": "19.0.0",
"npm": "8.19.2"
},
"main": "./lib/xmlrpc.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc.json '**/*.ts' --write",
"test": "vows 'test/*.js'",
"prepare": "husky install"
},
"homepage": "https://github.com/AssetVal/node-xmlrpc",
"description": "A (fork of a) pure JavaScript XML-RPC client and server.",
"keywords": [
"xml-rpc",
"xmlrpc",
"xml",
"rpc"
],
"preferGlobal": false,
"original-author": "Brandon Alexander <baalexander@gmail.com> (https://github.com/baalexander)",
"author": "Antonio Bourassa <ABourassa@AssetVal.com> (https://github.com/Abourass)",
"repository": {
"type": "git",
"url": "https://github.com/AssetVal/node-xmlrpc.git"
},
"directories": {
"lib": "./lib"
},
"license": "MIT",
"dependencies": {
"sax": "^1.2.4",
"xmlbuilder": "8.2.x"
},
"devDependencies": {
"@getify/eslint-plugin-proper-ternary": "^3.1.1",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/sax": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "2.7.1",
"typescript": "^4.9.3",
"vows": "^0.8.3"
},
"lint-staged": {
"./lib/*.ts": [
"prettier --write",
"eslint --cache --fix"
]
}
}