-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
53
{
"name": "firebolt-sdk",
"version": "1.14.5",
"description": "Official firebolt Node.JS sdk",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=16.0"
},
"scripts": {
"build": "rm -fr ./build && tsc -p tsconfig.lib.json",
"release": "standard-version",
"test": "jest",
"test:ci": "node --expose-gc ./node_modules/.bin/jest --ci --bail",
"type-check": "tsc -p tsconfig.lib.json"
},
"prettier": {
"tabWidth": 2,
"trailingComma": "none",
"arrowParens": "avoid"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.5.12",
"@types/rwlock": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"allure-commandline": "^2.29.0",
"allure-jest": "^2.15.1",
"dotenv": "^16.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0 <8.10.1 || >8.10.1 <9.0.0",
"eslint-plugin-prettier": "^4.0.0 <4.2.2 || >4.2.3",
"jest": "^29.7.0",
"msw": "^0.45.0",
"nock": "^13.4.0",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/json-bigint": "^1.0.1",
"abort-controller": "^3.0.0",
"agentkeepalive": "^4.5.0",
"json-bigint": "^1.0.0",
"node-fetch": "^2.6.6",
"rwlock": "^5.0.0"
}
}