-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.72 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "loadrush",
"version": "0.3.2",
"description": "Simple and flexible load testing tool by developers and for developers",
"author": "Chao Yang <[email protected]>",
"license": "MIT",
"repository": "git+https://github.com/loadflux/loadrush",
"keywords": [
"typescript",
"nodejs",
"load-testing",
"stress-testing"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "node lib/index.js",
"clean": "rimraf coverage build lib tmp",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prerelease": "npm run build",
"release": "npm login && bump --tag && npm publish",
"postrelease": "git push && git push --tags",
"typecheck": "tsc --noEmit",
"format": "prettier '**/*.{md,js,jsx,json,ts,tsx}' --write"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@influxdata/influx": "^0.5.5",
"agentkeepalive": "^4.1.4",
"content-type": "^1.0.4",
"debug": "^4.3.1",
"dotenv": "^8.6.0",
"expect": "^27.0.2",
"form-data": "^4.0.0",
"got": "^11.8.2",
"jmespath": "^0.15.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.30",
"mustache": "^3.2.1",
"ora": "^4.1.1",
"tslib": "^2.2.0",
"uuid": "^8.3.2",
"xmlhttprequest": "^1.8.0",
"xpath": "0.0.27"
},
"devDependencies": {
"@types/content-type": "^1.1.3",
"@types/debug": "^4.1.5",
"@types/follow-redirects": "^1.13.0",
"@types/jest": "^26.0.23",
"@types/jmespath": "^0.15.0",
"@types/lodash": "^4.14.168",
"@types/mime-types": "^2.1.0",
"@types/mustache": "^0.8.32",
"@types/node": "^12.20.12",
"@types/pg": "^7.14.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"docsify-cli": "^4.4.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.1.5",
"jest": "^26.0.1",
"pascal-case": "^2.0.1",
"pg": "^8.6.0",
"prettier": "^1.13.7",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"semver": "^6.3.0",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.3.2",
"version-bump-prompt": "^6.1.0"
},
"optionalDependencies": {
"@types/faker": "^4.1.7",
"aes256": "^1.0.4",
"faker": "^4.1.0",
"jsonwebtoken": "^8.5.1"
},
"engines": {
"node": ">= 12.20"
},
"volta": {
"node": "12.20.0"
}
}