-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@eligundry/server-timing",
"version": "1.0.5",
"description": "Framework agnostic implementation for tracking app latency with Server-Timing headers",
"repository": {
"type": "git",
"url": "https://github.com/eligundry/server-timing"
},
"main": "dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "node --loader ts-node/esm --test src/*.test.ts",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.build.cjs.json",
"build:esm": "tsc -p tsconfig.build.json",
"prepare": "npm test && npm run build"
},
"files": [
"./dist/*"
],
"author": "Eli Gundry",
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": true
},
"devDependencies": {
"prettier": "^2.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}