-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
51 lines (51 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
{
"name": "@tastytrade/api",
"version": "5.0.0",
"type": "module",
"module": "dist/tastytrade-api.js",
"types": "dist/tastytrade-api.d.ts",
"exports": {
"types": "./dist/tastytrade-api.d.ts",
"default": "./dist/tastytrade-api.js"
},
"repository": "https://github.com/tastytrade/tastytrade-api-js",
"license": "MIT",
"description": "Typescript impelementation of tastytrade api",
"engines": {
"npm": ">=9.0.0",
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest -i --restoreMocks",
"unit-test": "node --experimental-vm-modules ./node_modules/.bin/jest tests/unit",
"integration-test": "node --experimental-vm-modules ./node_modules/.bin/jest tests/integration",
"lint": "eslint lib/** tests/**",
"prepublishOnly": "npm run unit-test && npm run build",
"postpack": "git tag -a $npm_package_version -m $npm_package_version && git push origin $npm_package_version"
},
"dependencies": {
"@types/lodash": "^4.14.182",
"@types/qs": "^6.9.7",
"axios": "^1.3.4",
"isomorphic-ws": "^5.0.0",
"lodash": "^4.17.21",
"qs": "^6.11.1",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "20.9.0",
"@types/uuid": "^9.0.2",
"@types/ws": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"dotenv": "^16.0.3",
"eslint": "^8.14.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}