UNPKG

1.3 kBJSONView Raw
1{
2 "name": "supertest",
3 "description": "SuperAgent driven library for testing HTTP servers",
4 "version": "6.3.3",
5 "author": "TJ Holowaychuk",
6 "contributors": [],
7 "dependencies": {
8 "methods": "^1.1.2",
9 "superagent": "^8.0.5"
10 },
11 "devDependencies": {
12 "body-parser": "^1.20.1",
13 "cookie-parser": "^1.4.6",
14 "eslint": "^8.29.0",
15 "eslint-config-airbnb-base": "^15.0.0",
16 "eslint-plugin-import": "^2.26.0",
17 "express": "^4.18.2",
18 "mocha": "^10.1.0",
19 "nock": "^13.2.9",
20 "nyc": "^15.1.0",
21 "proxyquire": "^2.1.3",
22 "should": "^13.2.3"
23 },
24 "engines": {
25 "node": ">=6.4.0"
26 },
27 "files": [
28 "index.js",
29 "lib"
30 ],
31 "keywords": [
32 "bdd",
33 "http",
34 "request",
35 "superagent",
36 "tdd",
37 "test",
38 "testing"
39 ],
40 "license": "MIT",
41 "main": "index.js",
42 "repository": {
43 "type": "git",
44 "url": "https://github.com/visionmedia/supertest.git"
45 },
46 "scripts": {
47 "coverage": "nyc report --reporter=text-lcov > coverage.lcov",
48 "lint": "eslint lib/**/*.js test/**/*.js index.js",
49 "lint:fix": "eslint --fix lib/**/*.js test/**/*.js index.js",
50 "pretest": "npm run lint --if-present",
51 "test": "nyc --reporter=html --reporter=text mocha --exit --require should --reporter spec --check-leaks"
52 }
53}