-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
105 lines (105 loc) · 3.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "tachometer",
"version": "0.7.1",
"description": "Web benchmark runner",
"main": "lib/cli.js",
"directories": {
"lib": "lib"
},
"type": "module",
"bin": {
"tach": "bin/tach.js",
"tachometer": "bin/tach.js"
},
"scripts": {
"prepare": "if [ -f './tsconfig.json' ]; then npm run build; fi;",
"build": "rimraf lib/ client/lib/ && mkdir lib && npm run generate-json-schema && tsc && tsc -p client/ && npm run lint",
"generate-json-schema": "typescript-json-schema tsconfig.json ConfigFile --include src/configfile.ts --required --noExtraProps > config.schema.json",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "mocha \"lib/test/**/*_test.js\" --grep \".*e2e.*\" --invert",
"test:e2e": "mocha \"lib/test/**/*_test.js\" --grep \".*e2e.*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/tachometer.git"
},
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Polymer/tachometer/issues"
},
"homepage": "https://github.com/Polymer/tachometer#readme",
"installsOnDemand": [
"iedriver",
"geckodriver",
"chromedriver"
],
"dependencies": {
"ansi-escape-sequences": "^6.0.1",
"command-line-args": "^5.0.2",
"command-line-usage": "^6.1.0",
"csv-stringify": "^6.2.0",
"fs-extra": "^10.0.0",
"get-stream": "^6.0.0",
"got": "^12.1.0",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^9.0.0",
"jstat": "^1.9.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-mount": "^4.0.0",
"koa-node-resolve": "^1.0.0-pre.8",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"pkg-install": "^1.0.0",
"pkg-up": "^4.0.0",
"progress": "^2.0.3",
"sanitize-filename": "^1.6.3",
"selenium-webdriver": "^4.0.0-alpha.8",
"semver": "^7.1.1",
"source-map-support": "^0.5.16",
"strip-ansi": "^7.0.1",
"systeminformation": "^5.3.3",
"table": "^6.0.7",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@types/ansi-escape-sequences": "^4.0.0",
"@types/babel__generator": "^7.6.1",
"@types/chai": "^4.2.4",
"@types/chai-as-promised": "^7.1.2",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/fs-extra": "^9.0.1",
"@types/got": "^9.6.8",
"@types/jsonwebtoken": "^9.0.0",
"@types/koa": "^2.0.51",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-mount": "^4.0.0",
"@types/koa-send": "^4.1.2",
"@types/koa-static": "^4.0.0",
"@types/mocha": "^9.0.0",
"@types/node-fetch": "^2.5.3",
"@types/progress": "^2.0.3",
"@types/rimraf": "^3.0.0",
"@types/selenium-webdriver": "^4.0.11",
"@types/semver": "^7.3.1",
"@types/source-map-support": "^0.5.4",
"@types/ua-parser-js": "^0.7.32",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.19.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"mocha": "^10.0.0",
"node-fetch": "^3.2.8",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.2",
"typescript-json-schema": "^0.54.0"
}
}