forked from vlucas/frisby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 971 Bytes
/
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
{
"name": "frisby",
"version": "2.1.0",
"description": "Frisby.js v2.0: REST API Endpoint Testing built on Jasmine",
"homepage": "http://frisbyjs.com",
"author": "Vance Lucas <vance@vancelucas.com>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/vlucas/frisby"
},
"keywords": [
"testing",
"api",
"REST",
"jasmine",
"bdd",
"frisby"
],
"main": "./src/frisby",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "jest",
"lint": "eslint src/** __tests__/**"
},
"dependencies": {
"form-data": "^2.2.0",
"joi": "^13.0.0",
"lodash": "^4.17.10",
"node-fetch": "^2.1.2",
"encoding": "^0.1.12"
},
"devDependencies": {
"jest": "^21.2.1",
"nock": "^9.3.3",
"eslint": "^4.19.1"
},
"jest": {
"testPathIgnorePatterns": [
"/__tests__/fixtures/",
"/node_modules/",
"/src/"
],
"verbose": false
}
}