-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 1.75 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
69
70
71
72
73
74
75
{
"name": "@abcnews/terminus-fetch",
"version": "7.0.0",
"description": "Grab a document from the Preview / Live Terminus content API, based on the current execution domain",
"license": "MIT",
"engines": {
"node": ">=18"
},
"contributors": [
"Colin Gourlay <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abcnews/terminus-fetch.git"
},
"bugs": {
"url": "https://github.com/abcnews/terminus-fetch/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"alias": {
"lib": "./src/index"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "3 KB"
},
{
"path": "dist/index.js",
"limit": "4 KB"
}
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsup src/index.ts --dts --sourcemap --format esm,cjs --watch",
"build": "tsup src/index.ts --dts --sourcemap --format esm,cjs",
"test": "jest --coverage",
"lint": "eslint src",
"prepare": "husky",
"size": "npm run build && size-limit",
"prepublishOnly": "npm run build",
"release": "np"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"@types/jest": "^29.5.8",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"eslint": "^8.53.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"np": "^10.0.2",
"size-limit": "^11.0.0",
"ts-jest": "^29.1.1",
"tslib": "^2.1.0",
"tsup": "^8.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@abcnews/env-utils": "^3.0.0"
}
}