UNPKG

990 BJSONView Raw
1{
2 "name": "frisby",
3 "version": "2.1.3",
4 "description": "Frisby.js v2.0: REST API Endpoint Testing built on Jasmine",
5 "homepage": "http://frisbyjs.com",
6 "author": "Vance Lucas <vance@vancelucas.com>",
7 "license": "BSD-3-Clause",
8 "repository": {
9 "type": "git",
10 "url": "http://github.com/vlucas/frisby"
11 },
12 "keywords": [
13 "testing",
14 "api",
15 "REST",
16 "jasmine",
17 "bdd",
18 "frisby"
19 ],
20 "main": "./src/frisby",
21 "engines": {
22 "node": ">= 8.0.0"
23 },
24 "scripts": {
25 "test": "jest",
26 "lint": "eslint src/** __tests__/**"
27 },
28 "dependencies": {
29 "form-data": "^2.2.0",
30 "joi": "^13.0.0",
31 "lodash": "^4.17.15",
32 "node-fetch": "^2.1.2",
33 "encoding": "^0.1.12"
34 },
35 "devDependencies": {
36 "eslint": "^4.19.1",
37 "jest": "^24.6.0",
38 "nock": "^11.6.0"
39 },
40 "jest": {
41 "testPathIgnorePatterns": [
42 "<rootDir>/__tests__/fixtures/",
43 "/node_modules/",
44 "<rootDir>/src/"
45 ],
46 "verbose": false
47 }
48}