UNPKG

1.88 kBJSONView Raw
1{
2 "name": "karma-benchmark",
3 "description": "Run Benchmark.js over multiple Browsers, with CI compatible output",
4 "version": "1.0.4",
5 "author": "Jamie Mason (https://github.com/JamieMason)",
6 "bugs": "https://github.com/JamieMason/karma-benchmark/issues",
7 "contributors": [
8 "Jacob Rask (https://github.com/jacobrask)",
9 "Jared Sprague (https://github.com/Jared-Sprague)",
10 "Larry Davis (https://github.com/lazd)",
11 "Micha Reiser (https://github.com/MichaReiser)"
12 ],
13 "dependencies": {
14 "lodash": "4.17.15",
15 "platform": "1.3.5"
16 },
17 "devDependencies": {
18 "@types/benchmark": "1.0.31",
19 "@types/karma": "3.0.3",
20 "@types/lodash": "4.14.136",
21 "@types/node": "12.6.8",
22 "@types/platform": "1.3.2",
23 "benchmark": "2.1.4",
24 "karma": "3.1.4",
25 "prettier": "1.18.2",
26 "rimraf": "2.6.3",
27 "ts-loader": "6.0.4",
28 "tslint": "5.18.0",
29 "typescript": "3.5.3",
30 "webpack": "4.36.1",
31 "webpack-cli": "3.3.6"
32 },
33 "files": [
34 "dist/"
35 ],
36 "homepage": "https://github.com/JamieMason/karma-benchmark",
37 "keywords": [
38 "benchmark",
39 "benchmarking",
40 "jsperf",
41 "karma",
42 "karma-framework",
43 "karma-plugin",
44 "monitoring",
45 "performance",
46 "profiling"
47 ],
48 "license": "MIT",
49 "main": "dist/index.js",
50 "peerDependencies": {
51 "benchmark": "^2.1.4",
52 "karma": "^4.2.0"
53 },
54 "repository": "JamieMason/karma-benchmark",
55 "resolutions": {
56 "lodash": ">=4.17.15"
57 },
58 "scripts": {
59 "build": "npm run build:client && npm run build:loader",
60 "build:client": "webpack --config ./webpack.config.js",
61 "build:loader": "tsc --project .",
62 "format": "prettier --write 'README.md' './{src,examples}/**/*.{ts,js}'",
63 "lint": "tslint --fix --project ./tsconfig.json",
64 "prebuild": "rimraf dist",
65 "prelint": "npm run format",
66 "prepack": "npm run build"
67 }
68}