-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "@aequilibrium\/rets-client",
"version": "0.3.10",
"description": "RETS Client in Typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/aeq/rets-client.git"
},
"author": "Aequilibrium Software Inc",
"homepage": "https://aequilibrium.com/",
"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"
},
"dependencies": {
"@aequilibrium/xmlr": "^0.1.2",
"@types/tough-cookie": "^4.0.0",
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.1",
"dotenv": "^10.0.0",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.2",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
},
"bugs": {
"url": "https://github.com/aeq/rets-client/issues"
},
"jest": {
"verbose": true,
"modulePathIgnorePatterns": ["dist"]
}
}