-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 953 Bytes
/
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
{
"name": "artillery-plugin-faker",
"version": "5.0.2",
"description": "Use faker.js in Artillery loadtest configurations",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"@faker-js/faker": "^7.5.0",
"debug": "^4.3.4",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"ava": "^4.3.3",
"require-no-cache": "^0.2.1",
"standard": "^17.0.0"
},
"scripts": {
"test": "ava",
"precommit": "npm run lint",
"lint": "standard"
},
"keywords": [
"faker",
"artillery",
"loadtest"
],
"author": "Fabian Schneider <[email protected]>",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/fabsrc/artillery-plugin-faker"
},
"bugs": {
"url": "https://github.com/fabsrc/artillery-plugin-faker/issues"
},
"homepage": "https://github.com/fabsrc/artillery-plugin-faker#readme",
"engines": {
"node": ">= 12"
}
}