-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "web-test-runner-performance",
"version": "0.1.6",
"description": "",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"type": "module",
"files": [
"*"
],
"scripts": {
"ci": "npm run clean && npm run build && npm run test",
"clean": "del ./dist",
"test": "web-test-runner",
"build": "tsc --project ./tsconfig.lib.json && cpy ./package.json dist/lib/ && cpy ./README.md dist/lib/ && cpy ./LICENSE.md dist/lib/",
"build:watch": "tsc --watch --project ./tsconfig.lib.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coryrylan/web-test-runner-performance.git"
},
"author": "Cory Rylan",
"license": "MIT",
"bugs": {
"url": "https://github.com/coryrylan/web-test-runner-performance/issues"
},
"homepage": "https://github.com/coryrylan/web-test-runner-performance#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.4.5"
},
"overrides": {
"rollup-plugin-styles": {
"cssnano": "6.1.2"
}
},
"dependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-virtual": "^3.0.2",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-rollup": "^0.6.1",
"@rollup/plugin-terser": "^0.4.4",
"@web/test-runner": "^0.18.1",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"brotli-size": "^4.0.0",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"fs-extra": "^11.2.0",
"lit": "^3.1.2",
"rollup-plugin-shell": "^1.0.9",
"rollup-plugin-styles": "^4.0.0",
"tslib": "^2.6.2"
}
}