forked from testing-community/workshop-api-testing-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 KB
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": "workshop-api-testing-js",
"version": "1.0.0",
"description": "This is a Workshop about Api Testing in JavaScript",
"main": "index.js",
"scripts": {
"lint": "eslint ./test/**/*.js",
"test": "npm run lint && mocha -t 15000 --reporter mochawesome --reporter-options reportDir=report,reportFilename=ApiTesting"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aperdomob/workshop-api-testing-js.git"
},
"keywords": [
"api-testing",
"dojo",
"practice"
],
"author": "Alejandro Perdomo - aperdomobo@gmail.com (aperdomob)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aperdomob/workshop-api-testing-js/issues"
},
"homepage": "https://github.com/aperdomob/workshop-api-testing-js#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-json-schema": "^1.5.1",
"chai-subset": "^1.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"http-status-codes": "^1.3.2",
"md5": "^2.2.1",
"mocha": "^6.2.3",
"mochawesome": "^4.0.1",
"superagent-response-time": "^1.0.3"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"superagent": "^5.1.0"
}
}