-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "@loveholidays/preact-perf-metrics",
"version": "1.0.0",
"description": "Preact+Playwright performance test",
"types": "lib/esm/index.d.ts",
"files": [
"lib"
],
"exports": {
".": "./lib/cjs/index.js",
"./setup": "./lib/esm/setup.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/loveholidays/preact-perf-metrics.git"
},
"author": "Ivan Slobodiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/loveholidays/preact-perf-metrics/issues"
},
"homepage": "https://github.com/loveholidays/preact-perf-metrics#readme",
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@types/node": "^20.11.2",
"prettier": "^2.8.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@playwright/test": "^1.x.x",
"preact": "^10.x.x"
},
"dependencies": {
"jest-diff": "^29.4.3"
}
}