-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.89 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
66
67
68
{
"name": "fetch-politely",
"version": "2.0.0-4",
"description": "Ensures polite outgoing HTTP requests that respects robots.txt and aren't made too close to each other",
"homepage": "http://github.com/voxpelli/node-fetch-politely",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-fetch-politely.git"
},
"author": {
"name": "Pelle Wessman",
"email": "pelle@kodfabrik.se",
"url": "http://kodfabrik.se/"
},
"license": "MIT",
"dependencies": {
"bunyan-adaptor": "^5.0.0",
"lodash.isequal": "^4.4.0",
"lodash.pull": "^4.1.0",
"lru-cache": "^4.0.0",
"request": "^2.87.0",
"robots": "^0.10.0",
"type-fest": "^0.16.0",
"verror": "^1.6.0"
},
"engines": {
"node": ">=12.0.0"
},
"main": "./lib/main.js",
"directories": {
"example": "./example",
"lib": "./lib"
},
"scripts": {
"check:dependency-check": "dependency-check ./package.json 'lib/**/*.js' 'example/**/*.js' --no-dev -i @types/* -i type-fest",
"check:installed-check": "installed-check -i eslint",
"check:lint": "eslint .",
"check:tsc": "tsc",
"check": "run-p check:*",
"test": "run-s check"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.pull": "^4.1.6",
"@types/lru-cache": "^4.1.2",
"@types/node": "^12.0.0",
"@types/request": "^2.48.5",
"@types/verror": "^1.10.4",
"@voxpelli/eslint-config": "4.0.0",
"dependency-check": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "1.3.1",
"installed-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.9.7"
}
}