-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@testquality/sdk",
"version": "1.15.3",
"description": "SDK for accessing TestQuality API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"build": "yarn clean && tsc --project ./tsconfig.json",
"dev": "tsc --watch",
"clean": "rimraf dist/*",
"test": "jest",
"lint": "eslint src --ext .ts",
"format:fix": "prettier --write '(src|test)/**/*.ts'",
"prepublish": "yarn prepare && yarn build",
"prepare": "ts-patch install -s",
"release": "npm version patch && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BitModern/test-quality-sdk.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/BitModern/test-quality-sdk/issues"
},
"homepage": "https://github.com/BitModern/test-quality-sdk#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.2",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-jest": "^27.2.4",
"dotenv": "^10.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.3.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^27.2.4",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"ts-patch": "^3.0.2",
"typescript": "5.1.6",
"typescript-transform-paths": "3.4.6"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"keywords": [
"testquality",
"test",
"quality",
"sdk"
],
"dependencies": {
"axios": "1.5.0",
"debug": "4.3.4",
"querystring": "0.2.1"
}
}