forked from aeq/rets-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "@jingbof/rets-client",
"version": "0.3.13",
"description": "RETS (Real Estate Transaction Standards) Client in Typescript",
"keywords": [
"typescript",
"rets",
"Real Estate Transaction Standards",
"mls",
"REBGV",
"TRREB"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jingbof/rets-client.git"
},
"author": "Jingbo",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc",
"start": "set NODE_PATH=./dist && node --trace-uncaught ./dist/test.js",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@aequilibrium/xmlr": "^0.1.2",
"@types/tough-cookie": "^4.0.5",
"axios": "^0.21.4",
"axios-cookiejar-support": "^1.0.1",
"dotenv": "^10.0.0",
"tough-cookie": "^4.1.4"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/jingbof/rets-client/issues"
},
"jest": {
"verbose": true,
"modulePathIgnorePatterns": [
"dist"
]
}
}