-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "node-fetch-plus",
"version": "1.0.5",
"description": "An extension of node-fetch that provides retries, timing and logging",
"homepage": "https://github.com/mrwillihog/node-fetch-plus",
"bugs": {
"url": "https://github.com/mrwillihog/node-fetch-plus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mrwillihog/node-fetch-plus.git"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"postbuild": "cp package.json dist/",
"format:check": "prettier \"./src/**/*.ts\" -l",
"format:fix": "prettier \"./src/**/*.ts\" --write",
"prelint": "npm run format:check",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha -r ts-node/register \"./src/**/*.test.ts\""
},
"keywords": [],
"author": "Matthew Williams",
"license": "Apache-2.0",
"devDependencies": {
"@types/mocha": "5.2.5",
"@types/nock": "9.3.0",
"@types/sinon": "7.0.0",
"mocha": "5.2.0",
"nock": "10.0.3",
"prettier": "1.15.3",
"sinon": "7.2.0",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2"
},
"dependencies": {
"node-fetch": "2.3.0",
"@types/node-fetch": "2.1.4",
"p-retry": "3.0.0",
"@types/p-retry": "2.0.0"
}
}