This repository was archived by the owner on Nov 7, 2022. It is now read-only.
forked from jshttp/fresh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.44 KB
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
{
"name": "@foxify/fresh",
"version": "1.1.0",
"description": "HTTP response freshness testing",
"author": {
"name": "Ardalan Amini",
"email": "ardalanamini22@gmail.com",
"url": "https://ardalanamini.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/foxifyjs/fresh.git"
},
"keywords": [
"fresh",
"http",
"conditional",
"cache"
],
"engines": {
"node": ">= 8"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "npm run build -- --watch",
"docs": "typedoc --out docs/ --mode file src/",
"lint": "tslint -p tsconfig.json -c tslint.json --exclude '**/*.d.ts'",
"test": "jest",
"coverage": "npm test -- --coverage",
"codecov": "npm run coverage -- --runInBand && codecov",
"benchmarks": "find benchmarks -name '*.js' -exec benchmarks/start.sh {} \\;"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"benchmark": "^2.1.4",
"codecov": "^3.5.0",
"fresh": "^0.5.2",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"node"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"<rootDir>/__tests__/**/*\\.ts"
]
}
}