UNPKG

1.28 kBJSONView Raw
1{
2 "name": "supertest",
3 "version": "6.1.6",
4 "description": "SuperAgent driven library for testing HTTP servers",
5 "main": "index.js",
6 "author": "TJ Holowaychuk",
7 "contributors": [
8 "Dimitri DO BAIRRO <dimitri.dobairro@dimsolution.com>"
9 ],
10 "license": "MIT",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/visionmedia/supertest.git"
14 },
15 "engines": {
16 "node": ">=6.0.0"
17 },
18 "keywords": [
19 "superagent",
20 "request",
21 "tdd",
22 "bdd",
23 "http",
24 "test",
25 "testing"
26 ],
27 "scripts": {
28 "lint": "eslint lib/**/*.js test/**/*.js index.js",
29 "lint:fix": "eslint --fix lib/**/*.js test/**/*.js index.js",
30 "pretest": "npm run lint",
31 "test": "nyc --reporter=html --reporter=text mocha --exit --require should --reporter spec --check-leaks",
32 "coverage": "nyc report --reporter=text-lcov | coveralls"
33 },
34 "dependencies": {
35 "methods": "^1.1.2",
36 "superagent": "^6.1.0"
37 },
38 "devDependencies": {
39 "body-parser": "1.19.0",
40 "cookie-parser": "1.4.5",
41 "coveralls": "3.1.0",
42 "eslint": "7.17.0",
43 "eslint-config-airbnb-base": "14.2.1",
44 "eslint-plugin-import": "2.22.1",
45 "express": "4.17.1",
46 "mocha": "8.2.1",
47 "nock": "13.0.5",
48 "nyc": "15.1.0",
49 "should": "13.2.3"
50 }
51}