forked from chanced/rets-client
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "rets-ddf-client",
"version": "1.2.11",
"description": "A RETS (Real Estate Transaction Standard) and DDF (Data Distribution Facility) client.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"private": false,
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.trim": "^4.5.1",
"request": "^2.87.0",
"xml2js": "^0.4.19"
},
"scripts": {
"prestart": "tsc",
"test": "node test.js",
"tsc": "tsc -m CommonJS --outDir dist/cjs && tsc -m ES2015 --outDir dist/esm"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.trim": "^4.5.6",
"@types/node": "^14.11.2",
"@types/request": "^2.47.1",
"@types/xml2js": "^0.4.3",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/WinUP/rets-client.git"
},
"author": "Lundarl Gholoi",
"license": "MIT",
"keywords": [
"rets",
"Real Estate Transaction Standard",
"ddf",
"Data Distribution Facility",
"crea",
"real estate",
"mls"
],
"bugs": {
"url": "https://github.com/WinUP/rets-client/issues"
},
"homepage": "https://github.com/WinUP/rets-client#readme",
"publishConfig": {
"access": "public"
}
}