-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "@jaspargupta/http-fetch",
"version": "1.0.2",
"description": "Light wrapper for Fetch API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/JasparGupta/http-fetch.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"fetch",
"http"
],
"author": "Jaspar Gupta",
"license": "MIT",
"dependencies": {
"@jaspargupta/cache-manager": "^1.2.2",
"lodash.isplainobject": "^4.0.6"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/lodash.isplainobject": "^4.0.7",
"date-fns": "^2.28.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}