forked from jperasmus/stale-while-revalidate-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.1 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
76
77
78
79
80
81
82
83
84
85
86
{
"version": "3.4.0",
"name": "stale-while-revalidate-cache",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/jperasmus/stale-while-revalidate-cache.git"
},
"author": {
"name": "JP Erasmus",
"email": "[email protected]",
"url": "https://github.com/jperasmus"
},
"contributors": [
{
"name": "Andreas Pålsson",
"url": "https://github.com/andreaspalsson"
},
{
"name": "Andrew Tereshkin",
"url": "https://github.com/upteran"
},
{
"name": "Paul Dixon",
"url": "https://github.com/mintbridge"
},
{
"name": "Antonio Guerra",
"url": "https://github.com/antonioguerra"
}
],
"scripts": {
"clean": "rm -rf dist",
"dev": "rollup -c -w",
"prebuild": "npm run clean",
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@size-limit/preset-small-lib": "^8.1.0",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"np": "^8.0.3",
"prettier": "^2.8.8",
"rollup": "^3.25.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"dependencies": {
"emittery": "^0.9.2"
}
}