forked from yamanrajab90/supertest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "supertest",
"version": "6.2.4",
"description": "SuperAgent driven library for testing HTTP servers",
"main": "index.js",
"author": "TJ Holowaychuk",
"contributors": [
"Dimitri DO BAIRRO <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/visionmedia/supertest.git"
},
"engines": {
"node": ">=6.4.0"
},
"keywords": [
"superagent",
"request",
"tdd",
"bdd",
"http",
"test",
"testing"
],
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js index.js",
"lint:fix": "eslint --fix lib/**/*.js test/**/*.js index.js",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha --exit --require should --reporter spec --check-leaks",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"methods": "^1.1.2",
"superagent": "^8.0.0"
},
"devDependencies": {
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"coveralls": "^3.1.1",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"mocha": "^10.0.0",
"nock": "^13.2.8",
"nyc": "^15.1.0",
"should": "^13.2.3"
}
}