-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "@sampullman/fetch-api",
"version": "0.12.1",
"description": "Small fetch wrapper for quickly prototyping API clients",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"lib"
],
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./tools/fixup.sh",
"example:dev": "npm -C example run dev",
"example:build": "npm -C example run build",
"build:all": "npm run build && npm run plugin:build",
"build:test": "npm run build && jest",
"test": "jest",
"lint": "eslint .",
"format": "prettier -w \"{**/*,*}.{ts,js,json}\"",
"format:check": "prettier --check \"{**/*,*}.{ts,js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sampullman/fetch-api.git"
},
"keywords": [
"fetch",
"api"
],
"author": "Sam Pullman",
"license": "MIT",
"bugs": {
"url": "https://github.com/sampullman/fetch-api/issues"
},
"homepage": "https://github.com/sampullman/fetch-api#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
}
}