-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"name": "server-timify",
"version": "1.0.1",
"description": "Parser for the Server-Timing header",
"license": "MIT",
"repository": "https://github.com/getoslash/server-timify",
"private": false,
"author": {
"name": "GP",
"email": "[email protected]"
},
"engines": {
"node": ">=12.0"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives --cache '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"build": "tsup --dts",
"test": "tap --rcfile=./test/.taprc",
"test:only": "TAP_ONLY=1 npm run test",
"coverage": "npm run test -- --check-coverage --coverage-report=lcovonly --coverage-report=cobertura --coverage-report=text --coverage-report=text-summary",
"release": "semantic-release",
"prepublishOnly": "npm run build"
},
"files": [
"dist/"
],
"main": "dist/index.js",
"keywords": [
"server-timing",
"performance",
"performanceservertiming",
"timings",
"header",
"parse",
"stringify"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.4",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@swc/core": "1.2.173",
"@types/node": "16.11.22",
"@types/tap": "15.0.7",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"eslint": "8.14.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-tap": "1.2.1",
"prettier": "2.6.2",
"tap": "16.1.0",
"ts-node": "10.7.0",
"tsup": "5.12.6",
"typescript": "4.6.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}