-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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": "@razee/request-util",
"version": "0.0.0-dev",
"description": "A set of utilities to facilitate migrating from the deprecated request library to a supported library such as Axios",
"author": "Paul Carroll",
"main": "src/request.js",
"type": "commonjs",
"keywords": [
"request",
"request-promise-native",
"axios",
"razee",
"razeedash"
],
"scripts": {
"start": "node index.js",
"test": "nyc --reporter=html --reporter=text mocha ",
"test:debug": "mocha --inspect-brk",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"lint": "npx npm-run-all --npm-path npm eslint yamllint markdownlint",
"eslint": "npx eslint src/ test/",
"yamllint": "npx yaml-lint .travis.yml",
"markdownlint": "npx markdownlint-cli README.md"
},
"repository": {
"type": "git",
"url": "[email protected]:razee-io/request-util.git"
},
"contributors": [
{
"name": "Paul Carroll"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"aws4": "^1.13.1",
"axios": "^1.7.4",
"bunyan": "^1.8.15",
"deepmerge": "^4.3.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.46.0",
"markdownlint-cli": "^0.41.0",
"mocha": "^10.7.3",
"nock": "^13.5.4",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"yaml-lint": "^1.7.0"
}
}