-
Notifications
You must be signed in to change notification settings - Fork 201
/
package.json
54 lines (54 loc) · 1.04 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
52
53
54
{
"name": "frisby",
"version": "2.1.3",
"description": "Frisby.js v2.0: REST API Endpoint Testing built on Jasmine",
"homepage": "http://frisbyjs.com",
"author": "Vance Lucas <[email protected]>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/vlucas/frisby"
},
"keywords": [
"testing",
"api",
"REST",
"jest",
"bdd",
"frisby"
],
"files": [
"src"
],
"main": "./src/frisby",
"engines": {
"node": ">= 14.17.0"
},
"scripts": {
"test": "jest",
"lint": "eslint src/** __tests__/**"
},
"dependencies": {
"encoding": "^0.1.13",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"eslint": "^8.52.0",
"jest": "^29.7.0",
"joi": "^17.11.0",
"nock": "^13.3.6"
},
"peerDependencies": {
"joi": ">= 13.7.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/fixtures/",
"/node_modules/",
"<rootDir>/src/"
],
"verbose": false
}
}