-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "supertest-example",
"version": "3.0.0",
"description": "Example API testing using Supertest",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --fix \"src/**\"",
"feature-test": "mocha ./src/test/steps/ --reporter mochawesome",
"contract-test": "mocha ./src/test/contracts/ --reporter mochawesome",
"test": "mocha ./src/test/* --reporter mochawesome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marciovrl/supertest.git"
},
"author": "Márcio Lemos",
"license": "ISC",
"bugs": {
"url": "https://github.com/marciovrl/supertest/issues"
},
"homepage": "https://github.com/marciovrl/supertest#readme",
"dependencies": {
"@hapi/joi": "16.1.7",
"chai": "4.2.0",
"mocha": "8.0.1",
"mochawesome": "6.1.1",
"supertest": "4.0.2"
},
"devDependencies": {
"eslint": "7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0"
}
}