-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "memoized-node-fetch",
"version": "1.1.5",
"main": "build/index.js",
"types": "build/index.d.ts",
"description": "A wrapper around node-fetch that caches the request's promise before resolving.",
"author": "Christos Panagiotakopoulos <[email protected]>",
"website": "https://chrispanag.github.io/memoized-node-fetch/",
"repository": "git://github.com/chrispanag/memoized-node-fetch.git",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"node-fetch",
"fetch",
"cache",
"promise",
"nodejs",
"memoized",
"memoized-fetch"
],
"scripts": {
"build": "npx tsc",
"test": "ts-mocha tests/**/*.spec.ts",
"gen:docs": "npx typedoc --out docs --includeVersion src/index.ts",
"prepublish": "yarn run build",
"prettier:base": "npx prettier",
"prettier:check": "yarn run prettier:base --list-different '{src,tests}/**/*.{ts,spec.ts}'",
"prettier:write": "yarn run prettier:base --write '{src,tests}/**/*.{ts,spec.ts}'"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"all-contributors-cli": "^6.20.0",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"prettier": "^2.3.2",
"ts-mocha": "^8.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.21.9",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/node-fetch": "^2.5.12",
"node-fetch": "^2.6.1"
},
"engines": {
"node": ">=8.9.0"
},
"files": [
"LICENSE",
"README.md",
"build/**/*"
]
}