-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
74
75
76
77
{
"name": "k6-trpc",
"version": "1.0.0",
"description": "k6 tRPC client",
"license": "MIT",
"main": "lib/cjs/index.js",
"types": "lib/types/index.d.ts",
"homepage": "https://github.com/dextertanyj/k6-trpc",
"author": {
"name": "Dexter Tan",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dextertanyj/k6-trpc"
},
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/types/index.js"
},
"./package.json": "./package.json"
},
"files": [
"*.md",
"lib",
"src"
],
"keywords": [
"trpc",
"k6",
"load testing",
"stress testing"
],
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"prepack": "npm run build",
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"lint": "eslint --ext ts,js .",
"lint:fix": "eslint --fix --ext ts,js .",
"clean": "git clean -xdf node_modules lib",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@trpc/server": "^10.36.0",
"@types/k6": "^0.46.0",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@trpc/server": "^10.35.0",
"@types/k6": "^0.46.0"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"prettier --write",
"eslint --fix"
]
}
}