forked from fshost/xrpc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1020 Bytes
/
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
{
"name": "xmlrpc-parser",
"version": "1.0.4",
"main": "./src/index.js",
"type": "module",
"dependencies": {
"sax-parser": "^2.0.3",
"utf8-base64": "^0.1.2"
},
"description": "XML-RPC Parser",
"files": [
"src"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/leoz/xrpc.git"
},
"keywords": [
"xml",
"xmlrpc",
"rpc",
"parser"
],
"author": "Nathan Cartwright",
"contributors": [
"Leonid Zolotarev"
],
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"cross-fetch": "^4.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.3.1"
}
}