-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 940 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
{
"name": "load-tests-framework",
"version": "1.0.0",
"description": "A simple framework for testing your API. You can use it for simple things until load tests.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "npm run lint",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix"
},
"keywords": [
"api",
"fnctional",
"performance",
"simple",
"clean",
"load",
"test"
],
"author": "Bruno Agostini",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"faker": "^4.1.0",
"random-float": "^1.0.0",
"random-int": "^1.0.0",
"sleep-promise": "^2.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0"
}
}