-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "request-promise-middleware-framework",
"version": "3.0.6",
"description": "A framework to intercept HTTP calls made via the request-promise HTTP client.",
"main": "src/index.js",
"scripts": {
"document": "jsdoc2md \"src/*.js\" > apidoc.md",
"pretest": "eslint ./src/**/*.js && depcheck . --ignores eslint-config-prettier",
"test": "nyc mocha ./src/test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cimpress-MCP/request-promise-middleware-framework.git"
},
"keywords": [
"request-middleware",
"request-promise"
],
"author": "Cimpress",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cimpress-MCP/request-promise-middleware-framework/issues"
},
"homepage": "https://github.com/Cimpress-MCP/request-promise-middleware-framework#readme",
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.concat": "^4.5.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.toarray": "^4.4.0"
},
"devDependencies": {
"bluebird": "^3.5.5",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"depcheck": "^0.8.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"uuid": "^3.3.2"
},
"nyc": {
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"reporter": [
"text",
"lcov"
],
"include": [
"src/**/*.js"
],
"exclude": [
"src/test/**/*.js"
],
"cache": true,
"all": true
}
}